You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
592 B
22 lines
592 B
diff --git a/source/signals.c b/source/signals.c
|
|
index 0deddde..4124b2e 100644
|
|
--- a/source/signals.c
|
|
+++ b/source/signals.c
|
|
@@ -136,7 +136,7 @@ int sig;
|
|
{
|
|
if(++signal_count > 10) /* Be safe. We will die if persistent enough. */
|
|
(void) MSIGNAL(sig, SIG_DFL);
|
|
- return;
|
|
+ return 0;
|
|
}
|
|
error_sig = sig;
|
|
|
|
@@ -167,7 +167,7 @@ int sig;
|
|
if (wait_for_more)
|
|
put_buffer(" -more-", MSG_LINE, 0);
|
|
put_qio();
|
|
- return; /* OK. We don't quit. */
|
|
+ return 0; /* OK. We don't quit. */
|
|
}
|
|
(void) strcpy(died_from, "Interrupting");
|
|
}
|
|
|