Module Name: src
Committed By: tsutsui
Date: Sat Oct 19 14:42:30 UTC 2019
Modified Files:
src/sys/arch/zaurus/zaurus: machdep.c
Log Message:
Fix a build error with options VERBOSE_INIT_ARM.
To generate a diff of this commit:
cvs rdiff -u -r1.42 -r1.43 src/sys/arch/zaurus/zaurus/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/zaurus/zaurus/machdep.c
diff -u src/sys/arch/zaurus/zaurus/machdep.c:1.42 src/sys/arch/zaurus/zaurus/machdep.c:1.43
--- src/sys/arch/zaurus/zaurus/machdep.c:1.42 Tue Jul 16 14:41:49 2019
+++ src/sys/arch/zaurus/zaurus/machdep.c Sat Oct 19 14:42:30 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.42 2019/07/16 14:41:49 skrll Exp $ */
+/* $NetBSD: machdep.c,v 1.43 2019/10/19 14:42:30 tsutsui Exp $ */
/* $OpenBSD: zaurus_machdep.c,v 1.25 2006/06/20 18:24:04 todd Exp $ */
/*
@@ -107,7 +107,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.42 2019/07/16 14:41:49 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.43 2019/10/19 14:42:30 tsutsui Exp $");
#include "opt_ddb.h"
#include "opt_kgdb.h"
@@ -772,7 +772,7 @@ initarm(void *arg)
#ifdef VERBOSE_INIT_ARM
/* Tell the user about the memory */
- printf("physmemory: %d pages at 0x%08lx -> 0x%08lx\n", physmem,
+ printf("physmemory: %lu pages at 0x%08lx -> 0x%08lx\n", physmem,
physical_start, physical_end - 1);
#endif