svn commit: r293039 - in head/sys/dev: sec tsec

Justin Hibbits jhibbits at FreeBSD.org
Fri Jan 1 15:17:25 UTC 2016


Author: jhibbits
Date: Fri Jan  1 15:17:24 2016
New Revision: 293039
URL: https://svnweb.freebsd.org/changeset/base/293039

Log:
  Fix a couple printf formats.
  
  This was found when working on 64-bit PowerPC book-e support.

Modified:
  head/sys/dev/sec/sec.c
  head/sys/dev/tsec/if_tsec.c

Modified: head/sys/dev/sec/sec.c
==============================================================================
--- head/sys/dev/sec/sec.c	Fri Jan  1 12:35:33 2016	(r293038)
+++ head/sys/dev/sec/sec.c	Fri Jan  1 15:17:24 2016	(r293039)
@@ -44,6 +44,7 @@ __FBSDID("$FreeBSD$");
 #include <sys/random.h>
 #include <sys/rman.h>
 
+#include <machine/_inttypes.h>
 #include <machine/bus.h>
 #include <machine/resource.h>
 
@@ -235,7 +236,7 @@ sec_probe(device_t dev)
 		sc->sc_version = 3;
 		break;
 	default:
-		device_printf(dev, "unknown SEC ID 0x%016llx!\n", id);
+		device_printf(dev, "unknown SEC ID 0x%16"PRIx64"!\n", id);
 		return (ENXIO);
 	}
 

Modified: head/sys/dev/tsec/if_tsec.c
==============================================================================
--- head/sys/dev/tsec/if_tsec.c	Fri Jan  1 12:35:33 2016	(r293038)
+++ head/sys/dev/tsec/if_tsec.c	Fri Jan  1 15:17:24 2016	(r293039)
@@ -561,7 +561,7 @@ tsec_set_mac_address(struct tsec_softc *
 	TSEC_GLOBAL_LOCK_ASSERT(sc);
 
 	KASSERT((ETHER_ADDR_LEN <= sizeof(macbuf)),
-	    ("tsec_set_mac_address: (%d <= %d", ETHER_ADDR_LEN,
+	    ("tsec_set_mac_address: (%d <= %zd", ETHER_ADDR_LEN,
 	    sizeof(macbuf)));
 
 	macbufp = (char *)macbuf;


More information about the svn-src-head mailing list