Module Name:    src
Committed By:   christos
Date:           Fri Nov 13 01:37:19 UTC 2015

Modified Files:
        src/sys/dev: dev_verbose.h

Log Message:
remove extra semicolons.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/dev_verbose.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/dev/dev_verbose.h
diff -u src/sys/dev/dev_verbose.h:1.1 src/sys/dev/dev_verbose.h:1.2
--- src/sys/dev/dev_verbose.h:1.1	Sun Sep 21 10:30:22 2014
+++ src/sys/dev/dev_verbose.h	Thu Nov 12 20:37:19 2015
@@ -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 @@ tag ## _findproduct_stub(char *buf, size
 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 @@ DEV_VERBOSE_COMMON_DEFINE(tag)						\
 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 */
 

Reply via email to