summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2009-08-27 00:22:28 +0000
committerdholland <dholland@NetBSD.org>2009-08-27 00:22:28 +0000
commit410553a6b8f724f96c1ca5bdeb49231914631b65 (patch)
treea05807167c8015fa47493fd5b57e20f200a695c1
parent6f53e6c21ed9666d8fb9e5be8e205fca504e2d17 (diff)
downloadbsdgames-darwin-410553a6b8f724f96c1ca5bdeb49231914631b65.tar.gz
bsdgames-darwin-410553a6b8f724f96c1ca5bdeb49231914631b65.tar.zst
bsdgames-darwin-410553a6b8f724f96c1ca5bdeb49231914631b65.zip
remove unnecessary cast
-rw-r--r--dm/dm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dm/dm.c b/dm/dm.c
index 210bb423..e2f7b36c 100644
--- a/dm/dm.c
+++ b/dm/dm.c
@@ -1,4 +1,4 @@
-/* $NetBSD: dm.c,v 1.28 2009/08/12 05:51:59 dholland Exp $ */
+/* $NetBSD: dm.c,v 1.29 2009/08/27 00:22:28 dholland Exp $ */
/*
* Copyright (c) 1987, 1993
@@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1987, 1993\
#if 0
static char sccsid[] = "@(#)dm.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: dm.c,v 1.28 2009/08/12 05:51:59 dholland Exp $");
+__RCSID("$NetBSD: dm.c,v 1.29 2009/08/27 00:22:28 dholland Exp $");
#endif
#endif /* not lint */
@@ -314,7 +314,7 @@ logfile(void)
(void)fclose(lp);
return;
}
- sleep((u_int)1);
+ sleep(1);
}
if (pw = getpwuid(uid = getuid()))
fputs(pw->pw_name, lp);