Module Name:    src
Committed By:   dholland
Date:           Sun May 24 23:00:46 UTC 2009

Modified Files:
        src/games/trek: win.c

Log Message:
Remove unnecessary initialization that silenced a compiler warning in 1997.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/games/trek/win.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/trek/win.c
diff -u src/games/trek/win.c:1.10 src/games/trek/win.c:1.11
--- src/games/trek/win.c:1.10	Sun May 24 22:55:03 2009
+++ src/games/trek/win.c	Sun May 24 23:00:46 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: win.c,v 1.10 2009/05/24 22:55:03 dholland Exp $	*/
+/*	$NetBSD: win.c,v 1.11 2009/05/24 23:00:46 dholland Exp $	*/
 
 /*
  * Copyright (c) 1980, 1993
@@ -34,7 +34,7 @@
 #if 0
 static char sccsid[] = "@(#)win.c	8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: win.c,v 1.10 2009/05/24 22:55:03 dholland Exp $");
+__RCSID("$NetBSD: win.c,v 1.11 2009/05/24 23:00:46 dholland Exp $");
 #endif
 #endif /* not lint */
 
@@ -63,7 +63,7 @@
 win(void)
 {
 	long		s;
-	const struct cvntab	*p = NULL;
+	const struct cvntab *p;
 
 	sleep(1);
 	printf("\nCongratulations, you have saved the Federation\n");

Reply via email to