summaryrefslogtreecommitdiffstats
path: root/sail/main.c
diff options
context:
space:
mode:
authorjwise <jwise@NetBSD.org>2000-11-30 21:31:33 +0000
committerjwise <jwise@NetBSD.org>2000-11-30 21:31:33 +0000
commit94ee638cf5cbba5d7409285eb4d09bd4e22cdf23 (patch)
treee95c1b01c3a53811f2d771cc4932c6cdf48130c0 /sail/main.c
parent7cb9954d28020247cd5fbbcada8a4f717b9290bb (diff)
downloadbsdgames-darwin-94ee638cf5cbba5d7409285eb4d09bd4e22cdf23.tar.gz
bsdgames-darwin-94ee638cf5cbba5d7409285eb4d09bd4e22cdf23.tar.zst
bsdgames-darwin-94ee638cf5cbba5d7409285eb4d09bd4e22cdf23.zip
Fix style nit.
Diffstat (limited to 'sail/main.c')
-rw-r--r--sail/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sail/main.c b/sail/main.c
index 6345338a..df50abf8 100644
--- a/sail/main.c
+++ b/sail/main.c
@@ -1,4 +1,4 @@
-/* $NetBSD: main.c,v 1.8 2000/11/30 21:29:32 jwise Exp $ */
+/* $NetBSD: main.c,v 1.9 2000/11/30 21:31:33 jwise Exp $ */
/*
* Copyright (c) 1983, 1993
@@ -43,7 +43,7 @@ __COPYRIGHT("@(#) Copyright (c) 1983, 1993\n\
#if 0
static char sccsid[] = "@(#)main.c 8.2 (Berkeley) 4/28/95";
#else
-__RCSID("$NetBSD: main.c,v 1.8 2000/11/30 21:29:32 jwise Exp $");
+__RCSID("$NetBSD: main.c,v 1.9 2000/11/30 21:31:33 jwise Exp $");
#endif
#endif /* not lint */
@@ -72,7 +72,7 @@ main(int argc, char **argv)
exit(1);
close(fd);
- (void) srand(getpid());
+ srand(getpid());
if ((p = strrchr(*argv, '/')) != NULL)
p++;
else