From 5ea9bf39b86d7081a53bcc9aac434512f2b908ce Mon Sep 17 00:00:00 2001 From: Michael Sevakis Date: Tue, 28 Dec 2010 14:24:13 +0000 Subject: [PATCH] Comment about thread_id_entry missleading and wrong. Fix the dumb. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28918 a1c6a512-1295-4272-9138-f99709370657 --- firmware/thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/thread.c b/firmware/thread.c index 6cd4d33c6e..24bbb317f9 100644 --- a/firmware/thread.c +++ b/firmware/thread.c @@ -1509,7 +1509,7 @@ static struct thread_entry * find_empty_thread_slot(void) /*--------------------------------------------------------------------------- * Return the thread_entry pointer for a thread_id. Return the current - * thread if the ID is 0 (alias for current). + * thread if the ID is (unsigned int)-1 (alias for current). *--------------------------------------------------------------------------- */ struct thread_entry * thread_id_entry(unsigned int thread_id)