diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2007-09-08 12:32:41 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2007-09-08 12:32:41 +0000 |
commit | 174ce90371a8a0c51e0f2b1bac7853dec4a29e25 (patch) | |
tree | 43afb43829f1045d8bf9680a2cac61a8021e7133 /uisimulator/sdl/kernel.c | |
parent | f64ebb1c1f10e8d15fcc4879d781703c86c5fb8b (diff) | |
download | rockbox-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/sdl/kernel.c')
-rw-r--r-- | uisimulator/sdl/kernel.c | 2 |
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, wakeup_thread(sender); if(*sender != NULL) { - fprintf(stderr, "queue->send slot ovf: %08X\n", (int)*sender); + fprintf(stderr, "queue->send slot ovf: %p\n", *sender); exit(-1); } } |