summaryrefslogtreecommitdiff
path: root/src/library/loader.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/loader.c')
-rw-r--r--src/library/loader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/loader.c b/src/library/loader.c
index 8419445..0bc214f 100644
--- a/src/library/loader.c
+++ b/src/library/loader.c
@@ -151,7 +151,7 @@ WOLF_LIBRARY_FUNCPTR wolf_library_get_func( const wolf_library_p l, const char *
#if defined _WIN32
ret = GetProcAddress( l->handle, name );
if( ret == NULL ) {
- wolf_system_error_msg( l->errbuf, INTERNAL_ERRBUF_SIZE );
+ wolf_system_error_msg( l->errbuf, INTERNAL_ERRBUF_SIZE );
*error = WOLF_ERR_INTERNAL;
return ret;
}