Module Name: src
Committed By: jmcneill
Date: Wed Feb 9 02:30:09 UTC 2011
Modified Files:
src/sys/arch/x86/x86: genfb_machdep.c
Log Message:
PRIx64 instead of llx for uint64_t format
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/x86/x86/genfb_machdep.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/arch/x86/x86/genfb_machdep.c
diff -u src/sys/arch/x86/x86/genfb_machdep.c:1.5 src/sys/arch/x86/x86/genfb_machdep.c:1.6
--- src/sys/arch/x86/x86/genfb_machdep.c:1.5 Tue Feb 8 10:52:56 2011
+++ src/sys/arch/x86/x86/genfb_machdep.c Wed Feb 9 02:30:09 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: genfb_machdep.c,v 1.5 2011/02/08 10:52:56 jmcneill Exp $ */
+/* $NetBSD: genfb_machdep.c,v 1.6 2011/02/09 02:30:09 jmcneill Exp $ */
/*-
* Copyright (c) 2009 Jared D. McNeill <[email protected]>
@@ -31,7 +31,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: genfb_machdep.c,v 1.5 2011/02/08 10:52:56 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: genfb_machdep.c,v 1.6 2011/02/09 02:30:09 jmcneill Exp $");
#include "opt_mtrr.h"
@@ -92,7 +92,7 @@
mtrr.flags = MTRR_VALID;
mtrr.owner = 0;
- aprint_debug("%s: 0x%llx-0x%llx\n", __func__,
+ aprint_debug("%s: 0x%" PRIx64 "-0x%" PRIx64 "\n", __func__,
mtrr.base, mtrr.base + mtrr.len - 1);
n = 1;