summaryrefslogtreecommitdiffstats
path: root/games/cribbage/instr.c
diff options
context:
space:
mode:
Diffstat (limited to 'games/cribbage/instr.c')
-rw-r--r--games/cribbage/instr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/games/cribbage/instr.c b/games/cribbage/instr.c
index b329e33..ed06ce8 100644
--- a/games/cribbage/instr.c
+++ b/games/cribbage/instr.c
@@ -58,8 +58,8 @@ void
instructions()
{
struct stat sb;
- union wait pstat;
pid_t pid;
+ int pstat;
char *pager, *path;
if (stat(_PATH_INSTR, &sb)) {
@@ -84,7 +84,7 @@ instructions()
do {
pid = waitpid(pid, (int *)&pstat, 0);
} while (pid == -1 && errno == EINTR);
- if (pid == -1 || pstat.w_status)
+ if (pid == -1 || WEXITSTATUS(pstat) || WTERMSIG(pstat))
exit(1);
}
}
OpenPOWER on IntegriCloud