summaryrefslogtreecommitdiffstats
path: root/sail
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1993-08-10 02:15:07 +0000
committermycroft <mycroft@NetBSD.org>1993-08-10 02:15:07 +0000
commitcebdbd02f06db663af126129c97e0f47e0e15dae (patch)
tree6a6490bb966780f46521f7ba24e9d381bda9fd70 /sail
parent8d7a352d465eebb5abe987da7507f12edbeaba5f (diff)
downloadbsdgames-darwin-cebdbd02f06db663af126129c97e0f47e0e15dae.tar.gz
bsdgames-darwin-cebdbd02f06db663af126129c97e0f47e0e15dae.tar.zst
bsdgames-darwin-cebdbd02f06db663af126129c97e0f47e0e15dae.zip
Pass the signal number to tstp().
Diffstat (limited to 'sail')
-rw-r--r--sail/pl_7.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sail/pl_7.c b/sail/pl_7.c
index f7156ba8..b0bbb0e6 100644
--- a/sail/pl_7.c
+++ b/sail/pl_7.c
@@ -33,7 +33,7 @@
#ifndef lint
/*static char sccsid[] = "from: @(#)pl_7.c 5.7 (Berkeley) 2/28/91";*/
-static char rcsid[] = "$Id: pl_7.c,v 1.2 1993/08/01 18:51:35 mycroft Exp $";
+static char rcsid[] = "$Id: pl_7.c,v 1.3 1993/08/10 02:15:07 mycroft Exp $";
#endif /* not lint */
#include "player.h"
@@ -475,7 +475,7 @@ void
susp()
{
blockalarm();
- tstp();
+ tstp(SIGTSTP);
(void) signal(SIGTSTP, susp);
unblockalarm();
}