summaryrefslogtreecommitdiff
path: root/uisimulator
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2007-09-08 12:32:41 +0000
committerMichael Sevakis <jethead71@rockbox.org>2007-09-08 12:32:41 +0000
commit174ce90371a8a0c51e0f2b1bac7853dec4a29e25 (patch)
tree43afb43829f1045d8bf9680a2cac61a8021e7133 /uisimulator
parentf64ebb1c1f10e8d15fcc4879d781703c86c5fb8b (diff)
downloadrockbox-174ce90371a8a0c51e0f2b1bac7853dec4a29e25.tar.gz
rockbox-174ce90371a8a0c51e0f2b1bac7853dec4a29e25.zip
Fix some warnings in sim kernel.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14640 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
-rw-r--r--uisimulator/sdl/kernel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/uisimulator/sdl/kernel.c b/uisimulator/sdl/kernel.c
index 91d1afa1b9..c82c6632cf 100644
--- a/uisimulator/sdl/kernel.c
+++ b/uisimulator/sdl/kernel.c
@@ -56,7 +56,7 @@ static void queue_release_sender(struct thread_entry **sender,
56 wakeup_thread(sender); 56 wakeup_thread(sender);
57 if(*sender != NULL) 57 if(*sender != NULL)
58 { 58 {
59 fprintf(stderr, "queue->send slot ovf: %08X\n", (int)*sender); 59 fprintf(stderr, "queue->send slot ovf: %p\n", *sender);
60 exit(-1); 60 exit(-1);
61 } 61 }
62} 62}