From 682199d8342de1c96e4c02dfe8c87ef2584119b5 Mon Sep 17 00:00:00 2001 From: Kris Kennaway Date: Mon, 10 Jul 2000 07:13:36 +0000 Subject: [PATCH] Don't call printf without a format string. --- sys/pc98/i386/machdep.c | 2 +- sys/pc98/pc98/machdep.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/pc98/i386/machdep.c b/sys/pc98/i386/machdep.c index 2edef06fe410..0e273024d007 100644 --- a/sys/pc98/i386/machdep.c +++ b/sys/pc98/i386/machdep.c @@ -273,7 +273,7 @@ cpu_startup(dummy) /* * Good {morning,afternoon,evening,night}. */ - printf(version); + printf("%s", version); earlysetcpuclass(); startrtclock(); printcpuinfo(); diff --git a/sys/pc98/pc98/machdep.c b/sys/pc98/pc98/machdep.c index 2edef06fe410..0e273024d007 100644 --- a/sys/pc98/pc98/machdep.c +++ b/sys/pc98/pc98/machdep.c @@ -273,7 +273,7 @@ cpu_startup(dummy) /* * Good {morning,afternoon,evening,night}. */ - printf(version); + printf("%s", version); earlysetcpuclass(); startrtclock(); printcpuinfo();