소스 검색

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

(cherry-picked from commit d0220395294b63fc542e1cfac68289a77a09fb86)
Ozkan Sezer 2 년 전
부모
커밋
8104992064
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      test/testhaptic.c

+ 1 - 1
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);