(dylib.c) Explicitly cast dlerror to char*

This commit is contained in:
twinaphex 2015-08-22 18:40:07 +02:00
parent 0673475610
commit 39240d25e3

View File

@ -86,7 +86,7 @@ char *dylib_error(void)
return last_dyn_error;
return NULL;
#else
return dlerror();
return (char*)dlerror();
#endif
}