library: move QUICK_THREADS hack before return

Minor complaint where a line to stop GCC from complaining occured
after the return.
This commit is contained in:
Craig Small 2016-05-17 21:56:21 +10:00
parent 25f655891f
commit 8d7945fd0c

View File

@ -1114,10 +1114,10 @@ static proc_t* simple_readtask(PROCTAB *restrict const PT, const proc_t *restric
return t; return t;
next_task: next_task:
return NULL;
#ifndef QUICK_THREADS #ifndef QUICK_THREADS
(void)p; (void)p;
#endif #endif
return NULL;
} }
////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////