[libvirt] [PATCH 5/9] Require a semicolon for VIR_ENUM_DECL calls

Cole Robinson crobinso at redhat.com
Wed Jan 23 22:46:12 UTC 2019


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 at 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




More information about the libvir-list mailing list