diff options
| author | christos <christos@NetBSD.org> | 2015-11-13 01:37:19 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2015-11-13 01:37:19 +0000 |
| commit | dca68b5eb4f5c6eb94662b1c53394e4fbb5f92e4 (patch) | |
| tree | bd35e91a33d233fc70eaec1f9e7a8f18eea24090 /sys/dev/dev_verbose.h | |
| parent | 8431b9217998172fc86ebda0cc9f26f02860d852 (diff) | |
remove extra semicolons.
Diffstat (limited to 'sys/dev/dev_verbose.h')
| -rw-r--r-- | sys/dev/dev_verbose.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/dev_verbose.h b/sys/dev/dev_verbose.h index a175d6d0d3f..f7bf1c7e840 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 */ |
