From: Sebastian Harl Date: Sun, 23 Feb 2014 20:37:48 +0000 (-0800) Subject: Removed semicolon from SDB_PLUGIN_MAGIC definition. X-Git-Tag: sysdb-0.1.0~180 X-Git-Url: https://git.tokkee.org/?p=sysdb.git;a=commitdiff_plain;h=e42f3fe2cb5bdb7323386c800de898ab980971a2 Removed semicolon from SDB_PLUGIN_MAGIC definition. Rather, the semicolon is added when using the define. --- diff --git a/src/include/core/plugin.h b/src/include/core/plugin.h index a4217ac..5928560 100644 --- a/src/include/core/plugin.h +++ b/src/include/core/plugin.h @@ -52,7 +52,7 @@ typedef struct sdb_plugin_info sdb_plugin_info_t; * missing prototype warnings/errors for the plugin init * function */ #define SDB_PLUGIN_MAGIC \ - int sdb_module_init(sdb_plugin_info_t *info); + int sdb_module_init(sdb_plugin_info_t *info) typedef struct { _Bool do_loop;