Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 4 Jun 2012 17:22:43 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r236571 - head/sys/dev/aic7xxx/aicasm
Message-ID:  <201206041722.q54HMh9n055032@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201206041722.q54HMh9n055032>