Module Name: src
Committed By: matt
Date: Sat Oct 26 18:31:29 UTC 2013
Modified Files:
src/sys/sys: systm.h
Log Message:
change void<space> to void<tab> for device_printf
To generate a diff of this commit:
cvs rdiff -u -r1.258 -r1.259 src/sys/sys/systm.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/sys/systm.h
diff -u src/sys/sys/systm.h:1.258 src/sys/sys/systm.h:1.259
--- src/sys/sys/systm.h:1.258 Mon Mar 18 13:36:23 2013
+++ src/sys/sys/systm.h Sat Oct 26 18:31:29 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: systm.h,v 1.258 2013/03/18 13:36:23 para Exp $ */
+/* $NetBSD: systm.h,v 1.259 2013/10/26 18:31:29 matt Exp $ */
/*-
* Copyright (c) 1982, 1988, 1991, 1993
@@ -185,7 +185,7 @@ void aprint_naive(const char *, ...) __p
void aprint_verbose(const char *, ...) __printflike(1, 2);
void aprint_debug(const char *, ...) __printflike(1, 2);
-void device_printf(device_t, const char *fmt, ...) __printflike(2, 3);
+void device_printf(device_t, const char *fmt, ...) __printflike(2, 3);
void aprint_normal_dev(device_t, const char *, ...) __printflike(2, 3);
void aprint_error_dev(device_t, const char *, ...) __printflike(2, 3);