svn commit: r236571 - head/sys/dev/aic7xxx/aicasm

Dimitry Andric dim at FreeBSD.org
Mon Jun 4 17:22:44 UTC 2012


Author: dim
Date: Mon Jun  4 17:22:43 2012
New Revision: 236571
URL: http://svn.freebsd.org/changeset/base/236571

Log:
  Make aicasm compile without warnings if -Wpointer-sign is enabled.
  
  MFC after:	3 days

Modified:
  head/sys/dev/aic7xxx/aicasm/aicasm.c

Modified: head/sys/dev/aic7xxx/aicasm/aicasm.c
==============================================================================
--- head/sys/dev/aic7xxx/aicasm/aicasm.c	Mon Jun  4 17:13:32 2012	(r236570)
+++ head/sys/dev/aic7xxx/aicasm/aicasm.c	Mon Jun  4 17:22:43 2012	(r236571)
@@ -530,7 +530,7 @@ output_listing(char *ifilename)
 	int instrptr;
 	unsigned int line;
 	int func_count;
-	int skip_addr;
+	unsigned int skip_addr;
 
 	instrcount = 0;
 	instrptr = 0;


More information about the svn-src-all mailing list