diff options
Diffstat (limited to 'src/helper')
-rw-r--r-- | src/helper/jim.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helper/jim.c b/src/helper/jim.c index 847b855e..1a35b32b 100644 --- a/src/helper/jim.c +++ b/src/helper/jim.c @@ -7760,7 +7760,7 @@ void *dlsym(void *handle, const char *symbol) return GetProcAddress((HMODULE)handle, symbol); } static char win32_dlerror_string[121]; -const char *dlerror() +const char *dlerror(void) { FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM, NULL, GetLastError(), LANG_NEUTRAL, win32_dlerror_string, 120, NULL); |