summaryrefslogtreecommitdiffstats
path: root/games/atc/input.c
diff options
context:
space:
mode:
authorbrian <brian@FreeBSD.org>2001-07-09 09:24:06 +0000
committerbrian <brian@FreeBSD.org>2001-07-09 09:24:06 +0000
commit8636b161b333b18525b6f5ffc5139079c29c0d63 (patch)
treea109115514a8774e981280efca775db8a410df5b /games/atc/input.c
parentef44874abb9460f2956eba8e3233154af304f5b1 (diff)
downloadFreeBSD-src-8636b161b333b18525b6f5ffc5139079c29c0d63.zip
FreeBSD-src-8636b161b333b18525b6f5ffc5139079c29c0d63.tar.gz
Fix the type of the NULL arg to execl()
Idea from: Theo de Raadt <deraadt@openbsd.org>
Diffstat (limited to 'games/atc/input.c')
-rw-r--r--games/atc/input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/games/atc/input.c b/games/atc/input.c
index 88eb603..1b42ac5 100644
--- a/games/atc/input.c
+++ b/games/atc/input.c
@@ -339,10 +339,10 @@ gettoken()
base = shell;
else
base++;
- execl(shell, base, 0);
+ execl(shell, base, (char *)0);
}
else
- execl(_PATH_BSHELL, "sh", 0);
+ execl(_PATH_BSHELL, "sh", (char *)0);
exit(0); /* oops */
}
OpenPOWER on IntegriCloud