Apparently, the case is only needed when building for QT6.
This commit is contained in:
@@ -54,7 +54,7 @@ dynld_module(const char *name, dllimp_t *table)
|
||||
void *func;
|
||||
|
||||
/* See if we can load the desired module. */
|
||||
if ((h = LoadLibrary((WCHAR *) name)) == NULL) {
|
||||
if ((h = LoadLibrary(name)) == NULL) {
|
||||
dynld_log("DynLd(\"%s\"): library not found! (%08X)\n", name, GetLastError());
|
||||
return(NULL);
|
||||
}
|
||||
|
@@ -54,7 +54,7 @@ dynld_module(const char *name, dllimp_t *table)
|
||||
void *func;
|
||||
|
||||
/* See if we can load the desired module. */
|
||||
if ((h = LoadLibrary((WCHAR *) name)) == NULL) {
|
||||
if ((h = LoadLibrary(name)) == NULL) {
|
||||
dynld_log("DynLd(\"%s\"): library not found! (%08X)\n", name, GetLastError());
|
||||
return(NULL);
|
||||
}
|
||||
|
Reference in New Issue
Block a user