summaryrefslogtreecommitdiff
path: root/firmware/kernel.c
diff options
context:
space:
mode:
authorJean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com>2005-01-24 14:26:24 +0000
committerJean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com>2005-01-24 14:26:24 +0000
commit34d2a71fdd3c14c980a57d5247dae9ac7586fe5b (patch)
tree17d4c0e0c52da037203e5b18e6b48403ab93a5f6 /firmware/kernel.c
parent1265d03141839c32e562331a15ce4374dbb8360d (diff)
downloadrockbox-34d2a71fdd3c14c980a57d5247dae9ac7586fe5b.zip
rockbox-34d2a71fdd3c14c980a57d5247dae9ac7586fe5b.tar.gz
rockbox-34d2a71fdd3c14c980a57d5247dae9ac7586fe5b.tar.bz2
rockbox-34d2a71fdd3c14c980a57d5247dae9ac7586fe5b.tar.xz
More int -> long
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5654 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/kernel.c')
-rw-r--r--firmware/kernel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/kernel.c b/firmware/kernel.c
index 7c02264..06a5ec7 100644
--- a/firmware/kernel.c
+++ b/firmware/kernel.c
@@ -113,7 +113,7 @@ void queue_wait_w_tmo(struct event_queue *q, struct event *ev, int ticks)
}
}
-void queue_post(struct event_queue *q, int id, void *data)
+void queue_post(struct event_queue *q, long id, void *data)
{
int wr;
int oldlevel;