svn commit: r236704 - stable/9/sys/dev/aic7xxx/aicasm
Dimitry Andric
dim at FreeBSD.org
Thu Jun 7 06:41:10 UTC 2012
Author: dim
Date: Thu Jun 7 06:41:09 2012
New Revision: 236704
URL: http://svn.freebsd.org/changeset/base/236704
Log:
MFC r236571:
Make aicasm compile without warnings if -Wpointer-sign is enabled.
Modified:
stable/9/sys/dev/aic7xxx/aicasm/aicasm.c
Directory Properties:
stable/9/sys/ (props changed)
Modified: stable/9/sys/dev/aic7xxx/aicasm/aicasm.c
==============================================================================
--- stable/9/sys/dev/aic7xxx/aicasm/aicasm.c Thu Jun 7 05:37:46 2012 (r236703)
+++ stable/9/sys/dev/aic7xxx/aicasm/aicasm.c Thu Jun 7 06:41:09 2012 (r236704)
@@ -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-stable-9
mailing list