summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/target/hosted/sdl/button-sdl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/hosted/sdl/button-sdl.c b/firmware/target/hosted/sdl/button-sdl.c
index beb84ee77f..dea25bff27 100644
--- a/firmware/target/hosted/sdl/button-sdl.c
+++ b/firmware/target/hosted/sdl/button-sdl.c
@@ -295,7 +295,7 @@ void gui_message_loop(void)
295 do { 295 do {
296 /* wait for the next event */ 296 /* wait for the next event */
297 if(SDL_WaitEvent(&event) == 0) { 297 if(SDL_WaitEvent(&event) == 0) {
298 printf("SDL_WaitEvent() error\n"); 298 printf("SDL_WaitEvent(): %s\n", SDL_GetError());
299 return; /* error, out of here */ 299 return; /* error, out of here */
300 } 300 }
301 301