mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-17 22:50:51 +00:00
fix a clobbered by longjump warning
This commit is contained in:
parent
625e1e36d6
commit
e544c1247f
1 changed files with 1 additions and 1 deletions
|
@ -658,7 +658,7 @@ aiee (int sig)
|
|||
static void
|
||||
signal_handler (int sig)
|
||||
{
|
||||
int recover = 0;
|
||||
int volatile recover = 0; // volatile for longjump
|
||||
|
||||
printf ("Received signal %d, exiting...\n", sig);
|
||||
|
||||
|
|
Loading…
Reference in a new issue