Module Name: src
Committed By: njoly
Date: Thu Nov 10 22:33:12 UTC 2011
Modified Files:
src/sys/arch/vax/vax: autoconf.c
Log Message:
Remove extra newlines.
To generate a diff of this commit:
cvs rdiff -u -r1.92 -r1.93 src/sys/arch/vax/vax/autoconf.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/vax/vax/autoconf.c
diff -u src/sys/arch/vax/vax/autoconf.c:1.92 src/sys/arch/vax/vax/autoconf.c:1.93
--- src/sys/arch/vax/vax/autoconf.c:1.92 Tue Dec 14 23:44:49 2010
+++ src/sys/arch/vax/vax/autoconf.c Thu Nov 10 22:33:12 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: autoconf.c,v 1.92 2010/12/14 23:44:49 matt Exp $ */
+/* $NetBSD: autoconf.c,v 1.93 2011/11/10 22:33:12 njoly Exp $ */
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden.
@@ -31,7 +31,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.92 2010/12/14 23:44:49 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.93 2011/11/10 22:33:12 njoly Exp $");
#include "opt_compat_netbsd.h"
#include "opt_cputype.h"
@@ -117,8 +117,8 @@ mainbus_print(void *aux, const char *nam
{
struct mainbus_attach_args * const ma = aux;
if (name) {
- aprint_naive("%s at %s\n", ma->ma_type, name);
- aprint_normal("%s at %s\n", ma->ma_type, name);
+ aprint_naive("%s at %s", ma->ma_type, name);
+ aprint_normal("%s at %s", ma->ma_type, name);
}
return UNCONF;
}