Remove casts from typed pointer to void * for printf %p in test projects

This commit is contained in:
Petar Popovic 2024-09-24 13:07:15 +02:00 committed by Ozkan Sezer
parent 57418475ce
commit e5d3a1b6f5
3 changed files with 8 additions and 8 deletions

View file

@ -285,7 +285,7 @@ SDL_AppResult SDL_AppIterate(void *appstate)
#if 0
if (frame_next) {
SDL_Log("frame: %p at %" SDL_PRIu64, (void*)frame_next->pixels, timestampNS);
SDL_Log("frame: %p at %" SDL_PRIu64, frame_next->pixels, timestampNS);
}
#endif