Commit 5be157b3a2198d4d647a36508e2fa51b51b16d1c

Ozkan Sezer 2022-09-02T19:33:40

SDL_hidapi_wii.c: fix -Wpointer-sign warnings

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff --git a/src/joystick/hidapi/SDL_hidapi_wii.c b/src/joystick/hidapi/SDL_hidapi_wii.c
index be030df..9fce490 100644
--- a/src/joystick/hidapi/SDL_hidapi_wii.c
+++ b/src/joystick/hidapi/SDL_hidapi_wii.c
@@ -280,13 +280,13 @@ static SDL_bool ReadRegister(SDL_DriverWii_Context *ctx, Uint32 address, int siz
 
 static SDL_bool SendExtensionIdentify1(SDL_DriverWii_Context *ctx, SDL_bool sync)
 {
-    char data = 0x55;
+    unsigned char data = 0x55;
     return WriteRegister(ctx, 0xA400F0, &data, sizeof(data), sync);
 }
 
 static SDL_bool SendExtensionIdentify2(SDL_DriverWii_Context *ctx, SDL_bool sync)
 {
-    char data = 0x00;
+    unsigned char data = 0x00;
     return WriteRegister(ctx, 0xA400FB, &data, sizeof(data), sync);
 }