Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/splash %d -> %zd for size_t printf format



details:   https://anonhg.NetBSD.org/src/rev/2a4324e5282f
branches:  trunk
changeset: 761761:2a4324e5282f
user:      jmcneill <jmcneill%NetBSD.org@localhost>
date:      Mon Feb 07 02:57:49 2011 +0000

description:
%d -> %zd for size_t printf format

diffstat:

 sys/dev/splash/splash.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r b0422fc1c329 -r 2a4324e5282f sys/dev/splash/splash.c
--- a/sys/dev/splash/splash.c   Mon Feb 07 02:06:20 2011 +0000
+++ b/sys/dev/splash/splash.c   Mon Feb 07 02:57:49 2011 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: splash.c,v 1.9 2011/02/06 23:25:18 jmcneill Exp $ */
+/* $NetBSD: splash.c,v 1.10 2011/02/07 02:57:49 jmcneill Exp $ */
 
 /*-
  * Copyright (c) 2006 Jared D. McNeill <jmcneill%invisible.ca@localhost>
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: splash.c,v 1.9 2011/02/06 23:25:18 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: splash.c,v 1.10 2011/02/07 02:57:49 jmcneill Exp $");
 
 #include "opt_splash.h"
 
@@ -151,7 +151,7 @@
                return EBUSY;
        }
 
-       aprint_verbose("%s: splash image @ %p, %d bytes\n",
+       aprint_verbose("%s: splash image @ %p, %zd bytes\n",
            __func__, imgdata, imgdatalen);
        splash_image.data = imgdata;
        splash_image.datalen = imgdatalen;



Home | Main Index | Thread Index | Old Index