Module Name: src
Committed By: dholland
Date: Thu Aug 27 00:22:29 UTC 2009
Modified Files:
src/games/dm: dm.c
Log Message:
remove unnecessary cast
To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/games/dm/dm.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/games/dm/dm.c
diff -u src/games/dm/dm.c:1.28 src/games/dm/dm.c:1.29
--- src/games/dm/dm.c:1.28 Wed Aug 12 05:51:59 2009
+++ src/games/dm/dm.c Thu Aug 27 00:22:28 2009
@@ -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 @@
#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 @@
(void)fclose(lp);
return;
}
- sleep((u_int)1);
+ sleep(1);
}
if (pw = getpwuid(uid = getuid()))
fputs(pw->pw_name, lp);