summaryrefslogtreecommitdiffstats
path: root/runtime/obj-types.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-06-27 10:10:47 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2008-06-27 10:10:47 +0200
commitd4518082362afebef9400bcbf46e38228de83bf1 (patch)
tree2c33a18b7a5b45832bdf945d3ba7819404135760 /runtime/obj-types.h
parentb5faa3c4cef4d8a076a2de9953806ea90c9052d7 (diff)
downloadrsyslog-d4518082362afebef9400bcbf46e38228de83bf1.tar.gz
rsyslog-d4518082362afebef9400bcbf46e38228de83bf1.tar.xz
rsyslog-d4518082362afebef9400bcbf46e38228de83bf1.zip
reduced number of compile warnings in -pedantic gcc mode
Diffstat (limited to 'runtime/obj-types.h')
-rw-r--r--runtime/obj-types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/obj-types.h b/runtime/obj-types.h
index 5f531eb1..914c2f2c 100644
--- a/runtime/obj-types.h
+++ b/runtime/obj-types.h
@@ -365,7 +365,7 @@ rsRetVal objName##ClassExit(void) \
*/
#define BEGINinterface(obj) \
typedef struct obj##_if_s {\
- ifBEGIN; /* This MUST always be the first interface member */
+ ifBEGIN /* This MUST always be the first interface member */
#define ENDinterface(obj) \
} obj##_if_t;
@@ -403,7 +403,7 @@ rsRetVal objName##ClassExit(void) \
*/
#define PROTOTYPEObj(obj) \
PROTOTYPEObjClassInit(obj); \
- PROTOTYPEObjClassExit(obj);
+ PROTOTYPEObjClassExit(obj)
/* ------------------------------ end object loader system ------------------------------ */