Browse Source

os2: better error reporting from loadso

Ozkan Sezer 4 years ago
parent
commit
d1323eb0a9
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/loadso/os2/SDL_sysloadso.c

+ 3 - 3
src/loadso/os2/SDL_sysloadso.c

@@ -44,7 +44,7 @@ SDL_LoadObject(const char *sofile)
   SDL_free( pszModName );
   if ( ulRC != NO_ERROR )
   {
-    SDL_SetError( "Failed loading, module: %s", pszModName );
+    SDL_SetError( "Failed loading %s (E%u)", acError, ulRC );
     return NULL;
   }
 
@@ -58,9 +58,9 @@ SDL_LoadFunction(void *handle, const char *name)
   PFN        pFN;
 
   ulRC = DosQueryProcAddr( (HMODULE)handle, 0, name, &pFN );
-  if ( ulRC )
+  if ( ulRC != NO_ERROR )
   {
-    SDL_SetError( "Failed loading, procedure: %s", name );
+    SDL_SetError( "Failed loading procedure %s (E%u)", name, ulRC );
     return NULL;
   }