summaryrefslogtreecommitdiffstats
path: root/runtime/obj-types.h
diff options
context:
space:
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 ------------------------------ */