diff options
-rw-r--r-- | src/common/plugin.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/common/plugin.c b/src/common/plugin.c index 08198cb6..349c76c4 100644 --- a/src/common/plugin.c +++ b/src/common/plugin.c @@ -368,10 +368,12 @@ plugin_load (session *sess, char *filename, char *arg) { void *handle; char *pluginpath; - char *error; char *filepart; hexchat_init_func *init_func; hexchat_deinit_func *deinit_func; +#ifndef USE_GMODULE + char *error; +#endif /* get the filename without path */ filepart = file_part (filename); |