Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 14 Apr 2012 16:44:19 +0000 (UTC)
From:      Luigi Rizzo <luigi@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r234290 - head/sys/dev/netmap
Message-ID:  <201204141644.q3EGiJ3h038632@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: luigi
Date: Sat Apr 14 16:44:18 2012
New Revision: 234290
URL: http://svn.freebsd.org/changeset/base/234290

Log:
  i prefer this fix for the -Wformat warning (just one cast,
  all the other variables are already correct for %x).
  My previous attempt put the cast in the wrong place.

Modified:
  head/sys/dev/netmap/netmap_mem2.c

Modified: head/sys/dev/netmap/netmap_mem2.c
==============================================================================
--- head/sys/dev/netmap/netmap_mem2.c	Sat Apr 14 16:42:17 2012	(r234289)
+++ head/sys/dev/netmap/netmap_mem2.c	Sat Apr 14 16:44:18 2012	(r234290)
@@ -161,11 +161,9 @@ netmap_ofstophys(vm_offset_t offset)
 		return p[i]->lut[offset / p[i]->_objsize].paddr +
 			offset % p[i]->_objsize;
 	}
-	D("invalid ofs 0x%jx out of 0x%jx 0x%jx 0x%jx", (uintmax_t)o,
-		(uintmax_t)p[0]->_memtotal,
-		(uintmax_t)(p[0]->_memtotal + p[1]->_memtotal),
-		(uintmax_t)(p[0]->_memtotal + p[1]->_memtotal +
-		    p[2]->_memtotal));
+	D("invalid ofs 0x%x out of 0x%x 0x%x 0x%x", (u_int)o,
+		p[0]->_memtotal, p[0]->_memtotal + p[1]->_memtotal,
+		p[0]->_memtotal + p[1]->_memtotal + p[2]->_memtotal);
 	return 0;	// XXX bad address
 }
 



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