Drop the semicolon from the final statement of the macro, so
the compiler will require callers to add a semicolon.
Signed-off-by: Cole Robinson <crobinso(a)redhat.com>
---
src/util/virutil.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/util/virutil.h b/src/util/virutil.h
index d1c7d6e138..d5adab61e2 100644
--- a/src/util/virutil.h
+++ b/src/util/virutil.h
@@ -96,7 +96,7 @@ const char *virEnumToString(const char *const*types,
# define VIR_ENUM_DECL(name) \
const char *name ## TypeToString(int type); \
- int name ## TypeFromString(const char*type);
+ int name ## TypeFromString(const char*type)
/* No-op workarounds for functionality missing in mingw. */
# ifndef HAVE_GETUID
--
2.20.1