Module Name: src
Committed By: wiz
Date: Tue Feb 2 14:58:46 UTC 2010
Modified Files:
src/sys/dev/qbus: if_il.c
Log Message:
Fix incomplete line (deleto?), found by cppcheck and reported by
Henning Petersen in PR 42719.
To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/sys/dev/qbus/if_il.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/dev/qbus/if_il.c
diff -u src/sys/dev/qbus/if_il.c:1.24 src/sys/dev/qbus/if_il.c:1.25
--- src/sys/dev/qbus/if_il.c:1.24 Tue May 12 14:43:33 2009
+++ src/sys/dev/qbus/if_il.c Tue Feb 2 14:58:46 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: if_il.c,v 1.24 2009/05/12 14:43:33 cegger Exp $ */
+/* $NetBSD: if_il.c,v 1.25 2010/02/02 14:58:46 wiz Exp $ */
/*
* Copyright (c) 1982, 1986 Regents of the University of California.
* All rights reserved.
@@ -35,7 +35,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_il.c,v 1.24 2009/05/12 14:43:33 cegger Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_il.c,v 1.25 2010/02/02 14:58:46 wiz Exp $");
#include "opt_inet.h"
@@ -444,7 +444,8 @@
char bits[64];
snprintb(bits, sizeof(bits), IL_BITS, IL_RCSR(IL_CSR));
- aprint_error_dev(&sc->sc_dev, "stray xmit interrupt, csr=%s\n",
+ aprint_error_dev(&sc->sc_dev,
+ "stray xmit interrupt, csr=%s\n", bits);
return;
}