aboutsummaryrefslogtreecommitdiff
path: root/base/plugins.h
diff options
context:
space:
mode:
authorAndre Heider2010-09-06 22:18:10 +0000
committerAndre Heider2010-09-06 22:18:10 +0000
commitfd4189180da1faee7ac50d13757987bb9625b1ed (patch)
tree0120c6d0aa8c17aef2c7187c82f380405daeca93 /base/plugins.h
parent83a931dac03c6390482d21306850a02499915741 (diff)
downloadscummvm-rg350-fd4189180da1faee7ac50d13757987bb9625b1ed.tar.gz
scummvm-rg350-fd4189180da1faee7ac50d13757987bb9625b1ed.tar.bz2
scummvm-rg350-fd4189180da1faee7ac50d13757987bb9625b1ed.zip
PLUGINS: Fix warning when not using the ELF loader.
svn-id: r52613
Diffstat (limited to 'base/plugins.h')
-rw-r--r--base/plugins.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/plugins.h b/base/plugins.h
index eb7e93ddba..d4728d8a4c 100644
--- a/base/plugins.h
+++ b/base/plugins.h
@@ -94,7 +94,7 @@ extern int pluginTypeVersions[PLUGIN_TYPE_MAX];
#if defined(ELF_LOADER_TARGET) && defined(ELF_LOADER_CXA_ATEXIT)
#define PLUGIN_DYNAMIC_EXTRA_DECL uint32 __dso_handle __attribute__((visibility ("hidden"))) = 0
#else
-#define PLUGIN_DYNAMIC_EXTRA_DECL
+#define PLUGIN_DYNAMIC_EXTRA_DECL void dummyFuncToAllowTrailingSemicolon()
#endif
/**