Commit d0220395294b63fc542e1cfac68289a77a09fb86

Ozkan Sezer 2022-10-09T12:01:02

testhaptic: fix watcom "&array may not produce intended result" warning

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/test/testhaptic.c b/test/testhaptic.c
index 34da19f..8e92da3 100644
--- a/test/testhaptic.c
+++ b/test/testhaptic.c
@@ -106,7 +106,7 @@ main(int argc, char **argv)
     SDL_ClearError();
 
     /* Create effects. */
-    SDL_memset(&efx, 0, sizeof(efx));
+    SDL_memset(efx, 0, sizeof(efx));
     nefx = 0;
     supported = SDL_HapticQuery(haptic);