Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/pci Missing comma in aenfmt array initialization.
details: https://anonhg.NetBSD.org/src/rev/2ab5d24011c9
branches: trunk
changeset: 534931:2ab5d24011c9
user: kim <kim%NetBSD.org@localhost>
date: Tue Aug 06 20:47:44 2002 +0000
description:
Missing comma in aenfmt array initialization.
diffstat:
sys/dev/pci/twe.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 3757fa598a0b -r 2ab5d24011c9 sys/dev/pci/twe.c
--- a/sys/dev/pci/twe.c Tue Aug 06 19:29:35 2002 +0000
+++ b/sys/dev/pci/twe.c Tue Aug 06 20:47:44 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: twe.c,v 1.26 2002/07/10 15:37:30 christos Exp $ */
+/* $NetBSD: twe.c,v 1.27 2002/08/06 20:47:44 kim Exp $ */
/*-
* Copyright (c) 2000, 2001, 2002 The NetBSD Foundation, Inc.
@@ -70,7 +70,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: twe.c,v 1.26 2002/07/10 15:37:30 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: twe.c,v 1.27 2002/08/06 20:47:44 kim Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -160,7 +160,7 @@
* format 1 (unit specific message), and format 2 (port specific message).
*/
static const char *aenfmt[] = {
- "" /* No message */
+ "", /* No message */
"unit %d: ", /* Unit message */
"port %d: " /* Port message */
};
Home |
Main Index |
Thread Index |
Old Index