Forráskód Böngészése

joystick/gdk/SDL_gameinputjoystick.c: fix build errors due to -Wformat

Ozkan Sezer 5 hónapja
szülő
commit
0f9e551d71
1 módosított fájl, 2 hozzáadás és 2 törlés
  1. 2 2
      src/joystick/gdk/SDL_gameinputjoystick.c

+ 2 - 2
src/joystick/gdk/SDL_gameinputjoystick.c

@@ -261,7 +261,7 @@ static bool GAMEINPUT_JoystickInit(void)
 
         hR = GameInputCreateFunc(&g_pGameInput);
         if (FAILED(hR)) {
-            return SDL_SetError("GameInputCreate failure with HRESULT of %08X", hR);
+            return SDL_SetError("GameInputCreate failure with HRESULT of %08lX", hR);
         }
     }
 
@@ -274,7 +274,7 @@ static bool GAMEINPUT_JoystickInit(void)
                                            GAMEINPUT_InternalJoystickDeviceCallback,
                                            &g_GameInputCallbackToken);
     if (FAILED(hR)) {
-        return SDL_SetError("IGameInput::RegisterDeviceCallback failure with HRESULT of %08X", hR);
+        return SDL_SetError("IGameInput::RegisterDeviceCallback failure with HRESULT of %08lX", hR);
     }
 
     // Calculate the relative offset between SDL timestamps and GameInput timestamps