Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev remove extra semicolons.



details:   https://anonhg.NetBSD.org/src/rev/779ad49bc687
branches:  trunk
changeset: 341596:779ad49bc687
user:      christos <christos%NetBSD.org@localhost>
date:      Fri Nov 13 01:37:19 2015 +0000

description:
remove extra semicolons.

diffstat:

 sys/dev/dev_verbose.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 3d5dc099a2e7 -r 779ad49bc687 sys/dev/dev_verbose.h
--- a/sys/dev/dev_verbose.h     Thu Nov 12 23:11:21 2015 +0000
+++ b/sys/dev/dev_verbose.h     Fri Nov 13 01:37:19 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: dev_verbose.h,v 1.1 2014/09/21 14:30:22 christos Exp $ */
+/*     $NetBSD: dev_verbose.h,v 1.2 2015/11/13 01:37:19 christos Exp $ */
 
 /*
  * Redistribution and use in source and binary forms, with or without
@@ -129,7 +129,7 @@
 const char *(*tag ## _findvendor)(char *, size_t, uint16_t) =          \
     tag ## _findvendor_stub;                                           \
 const char *(*tag ## _findproduct)(char *, size_t, uint16_t, uint16_t) =\
-    tag ## _findproduct_stub;                                          \
+    tag ## _findproduct_stub                                           \
 
 #else
 
@@ -138,7 +138,7 @@
 const char *(*tag ## _findvendor)(char *, size_t, uint16_t) =          \
     tag ## _findvendor_real;                                           \
 const char *(*tag ## _findproduct)(char *, size_t, uint16_t, uint16_t) =\
-    tag ## _findproduct_real;                                          \
+    tag ## _findproduct_real                                           \
 
 #endif /* _KERNEL */
 



Home | Main Index | Thread Index | Old Index