瀏覽代碼

Fixed warning: ordered comparison of pointer with integer zero

Sam Lantinga 11 月之前
父節點
當前提交
0410328b15
共有 1 個文件被更改,包括 1 次插入3 次删除
  1. 1 3
      src/test/SDL_test_memory.c

+ 1 - 3
src/test/SDL_test_memory.c

@@ -212,9 +212,7 @@ static void SDL_UntrackAllocation(void *mem)
         }
         }
         prev = entry;
         prev = entry;
     }
     }
-    if (s_tracked_allocations < 0) {
-        s_unknown_frees += 1;
-    }
+    s_unknown_frees += 1;
     UNLOCK_ALLOCATOR();
     UNLOCK_ALLOCATOR();
 }
 }