From cce9b2f24e0a7178054faacf4ff80d1af75eed7a Mon Sep 17 00:00:00 2001 From: christos Date: Fri, 13 Nov 2015 01:37:19 +0000 Subject: [PATCH] remove extra semicolons. --- sys/dev/dev_verbose.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/dev/dev_verbose.h b/sys/dev/dev_verbose.h index a175d6d0d3f5..f7bf1c7e840e 100644 --- a/sys/dev/dev_verbose.h +++ b/sys/dev/dev_verbose.h @@ -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_t len, uint16_t vendor, \ 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 */