Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/games/dm remove unnecessary cast



details:   https://anonhg.NetBSD.org/src/rev/0244949f49a7
branches:  trunk
changeset: 746995:0244949f49a7
user:      dholland <dholland%NetBSD.org@localhost>
date:      Thu Aug 27 00:22:28 2009 +0000

description:
remove unnecessary cast

diffstat:

 games/dm/dm.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r ac2abc54d8b1 -r 0244949f49a7 games/dm/dm.c
--- a/games/dm/dm.c     Thu Aug 27 00:21:45 2009 +0000
+++ b/games/dm/dm.c     Thu Aug 27 00:22:28 2009 +0000
@@ -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);



Home | Main Index | Thread Index | Old Index