From 8d7945fd0cfab099155f77d43ba0f958e48d412a Mon Sep 17 00:00:00 2001 From: Craig Small Date: Tue, 17 May 2016 21:56:21 +1000 Subject: [PATCH] library: move QUICK_THREADS hack before return Minor complaint where a line to stop GCC from complaining occured after the return. --- proc/readproc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proc/readproc.c b/proc/readproc.c index 8076bdce..b7591892 100644 --- a/proc/readproc.c +++ b/proc/readproc.c @@ -1114,10 +1114,10 @@ static proc_t* simple_readtask(PROCTAB *restrict const PT, const proc_t *restric return t; next_task: - return NULL; #ifndef QUICK_THREADS (void)p; #endif + return NULL; } //////////////////////////////////////////////////////////////////////////////////