diff options
author | Hugh Graham <hugh@cvs.openbsd.org> | 2000-10-17 19:57:56 +0000 |
---|---|---|
committer | Hugh Graham <hugh@cvs.openbsd.org> | 2000-10-17 19:57:56 +0000 |
commit | 0d1d6c0df4ede269401300822b163764693d5e79 (patch) | |
tree | d04fe634bb6bde1cadd21ca693d8f8f15812abe6 /sys | |
parent | f96d8f7ba570c1a1ed3940ce7c7af81f718a57ee (diff) |
remove extra newline from printf
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/vax/vax/machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/vax/vax/machdep.c b/sys/arch/vax/vax/machdep.c index ce3b210bf6e..91108f51d94 100644 --- a/sys/arch/vax/vax/machdep.c +++ b/sys/arch/vax/vax/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.25 2000/10/10 18:25:00 bjc Exp $ */ +/* $OpenBSD: machdep.c,v 1.26 2000/10/17 19:57:55 hugh Exp $ */ /* $NetBSD: machdep.c,v 1.108 2000/09/13 15:00:23 thorpej Exp $ */ /* @@ -183,7 +183,7 @@ cpu_startup() * Good {morning,afternoon,evening,night}. * Also call CPU init on systems that need that. */ - printf("%s\n%s\n", version, cpu_model); + printf("%s%s\n", version, cpu_model); if (dep_call->cpu_conf) (*dep_call->cpu_conf)(); |