Module Name: src
Committed By: jmcneill
Date: Tue Feb 8 23:28:25 UTC 2011
Modified Files:
src/sys/dev/splash: splash.c
Log Message:
%zu for size_t, not %zd
To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/dev/splash/splash.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/splash/splash.c
diff -u src/sys/dev/splash/splash.c:1.10 src/sys/dev/splash/splash.c:1.11
--- src/sys/dev/splash/splash.c:1.10 Mon Feb 7 02:57:49 2011
+++ src/sys/dev/splash/splash.c Tue Feb 8 23:28:24 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: splash.c,v 1.10 2011/02/07 02:57:49 jmcneill Exp $ */
+/* $NetBSD: splash.c,v 1.11 2011/02/08 23:28:24 jmcneill Exp $ */
/*-
* Copyright (c) 2006 Jared D. McNeill <[email protected]>
@@ -34,7 +34,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: splash.c,v 1.10 2011/02/07 02:57:49 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: splash.c,v 1.11 2011/02/08 23:28:24 jmcneill Exp $");
#include "opt_splash.h"
@@ -151,7 +151,7 @@
return EBUSY;
}
- aprint_verbose("%s: splash image @ %p, %zd bytes\n",
+ aprint_verbose("%s: splash image @ %p, %zu bytes\n",
__func__, imgdata, imgdatalen);
splash_image.data = imgdata;
splash_image.datalen = imgdatalen;