From: François Tigeot Date: Mon, 23 Jul 2012 07:29:25 +0000 (+0200) Subject: aic7xxx: fix a pointer sign warning X-Git-Tag: v3.2.0~546 X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/00999206d00308a6220ca38dfb7f87cccc95077b aic7xxx: fix a pointer sign warning --- diff --git a/sys/dev/disk/aic7xxx/aicasm/aicasm.c b/sys/dev/disk/aic7xxx/aicasm/aicasm.c index 2ab292c7c1..093c869098 100644 --- a/sys/dev/disk/aic7xxx/aicasm/aicasm.c +++ b/sys/dev/disk/aic7xxx/aicasm/aicasm.c @@ -527,7 +527,7 @@ output_listing(char *ifilename) int instrptr; unsigned int line; int func_count; - int skip_addr; + unsigned int skip_addr; instrcount = 0; instrptr = 0;