From 27f67b22d780f491c72a16cdf6881ca0f585b415 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net> Date: Thu, 7 Jan 1999 21:59:07 -0800 Subject: [PATCH] bugfix I hope Rev: src/signal_handler.c:1.99 --- src/signal_handler.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/signal_handler.c b/src/signal_handler.c index 68b3a36552..37f1b3b857 100644 --- a/src/signal_handler.c +++ b/src/signal_handler.c @@ -23,7 +23,7 @@ #include "builtin_functions.h" #include <signal.h> -RCSID("$Id: signal_handler.c,v 1.98 1999/01/08 01:27:28 hubbe Exp $"); +RCSID("$Id: signal_handler.c,v 1.99 1999/01/08 05:59:07 hubbe Exp $"); #ifdef HAVE_PASSWD_H # include <passwd.h> @@ -120,8 +120,8 @@ struct wait_data { WAITSTATUSTYPE status; }; -static struct wait_data wait_buf[WAIT_BUFFER]; -static int firstwait=0, lastwait=0; +static volatile struct wait_data wait_buf[WAIT_BUFFER]; +static volatile int firstwait=0, lastwait=0; #endif /* ! NT */ -- GitLab