diff options
author | charnier <charnier@FreeBSD.org> | 1998-04-01 06:16:17 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 1998-04-01 06:16:17 +0000 |
commit | cb6ac538662066f5081d899a0e42692fe088b446 (patch) | |
tree | f5907479ae6266815faac5a45ec99bb7599ab35e /games/trek | |
parent | 237c19bc20f755773232fb6323a3786bd610ade7 (diff) | |
download | FreeBSD-src-cb6ac538662066f5081d899a0e42692fe088b446.zip FreeBSD-src-cb6ac538662066f5081d899a0e42692fe088b446.tar.gz |
Exit(-1) -> exit(1).
Diffstat (limited to 'games/trek')
-rw-r--r-- | games/trek/utility.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/trek/utility.c b/games/trek/utility.c index a741f7f..f972f18 100644 --- a/games/trek/utility.c +++ b/games/trek/utility.c @@ -146,5 +146,5 @@ syserr(p0, p1, p2, p3, p4, p5) printf("\n"); if (errno) printf("\tsystem error %d\n", errno); - exit(-1); + exit(1); } |