From 9c8b2d7a954892904cfc85a00e7a98e7cd2eb9fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Sun, 20 Apr 1997 05:53:35 +0200 Subject: [PATCH] Removed a warning Rev: src/threads.c:1.23 --- src/threads.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/threads.c b/src/threads.c index 897549ae3e..b87be89dc3 100644 --- a/src/threads.c +++ b/src/threads.c @@ -1,5 +1,5 @@ #include "global.h" -RCSID("$Id: threads.c,v 1.22 1997/04/18 01:29:28 hubbe Exp $"); +RCSID("$Id: threads.c,v 1.23 1997/04/20 03:53:35 grubba Exp $"); int num_threads = 1; int threads_disabled = 0; @@ -88,6 +88,8 @@ void *new_thread_func(void * data) /* fprintf(stderr,"Done[%d]\n",dbt--);*/ mt_unlock(& interpreter_lock); th_exit(0); + /* NOT_REACHED, but removes a warning */ + return(NULL); } #ifdef UNIX_THREADS -- GitLab