Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
More compiler warning fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jul 20, 2013
1 parent f70a37d commit de7ba16
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/test/SDL_test_common.c
Expand Up @@ -1094,7 +1094,8 @@ SDLTest_PrintEvent(SDL_Event * event)
case SDL_FINGERUP:
fprintf(stderr, "Finger: %s touch=%lld, finger=%lld, x=%f, y=%f, dx=%f, dy=%f, pressure=%f",
(event->type == SDL_FINGERDOWN) ? "down" : "up",
event->tfinger.touchId, event->tfinger.fingerId,
(long long) event->tfinger.touchId,
(long long) event->tfinger.fingerId,
event->tfinger.x, event->tfinger.y,
event->tfinger.dx, event->tfinger.dy, event->tfinger.pressure);
break;
Expand Down

0 comments on commit de7ba16

Please sign in to comment.