Source-Changes-HG archive

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

[src/trunk]: src/games/tetris Fix core dump.



details:   https://anonhg.NetBSD.org/src/rev/6a3eea20f2db
branches:  trunk
changeset: 486524:6a3eea20f2db
user:      blymn <blymn%NetBSD.org@localhost>
date:      Wed May 24 14:43:00 2000 +0000

description:
Fix core dump.

diffstat:

 games/tetris/screen.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 0b2aec84a058 -r 6a3eea20f2db games/tetris/screen.c
--- a/games/tetris/screen.c     Wed May 24 14:40:09 2000 +0000
+++ b/games/tetris/screen.c     Wed May 24 14:43:00 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: screen.c,v 1.14 2000/05/22 12:42:47 blymn Exp $        */
+/*     $NetBSD: screen.c,v 1.15 2000/05/24 14:43:00 blymn Exp $        */
 
 /*-
  * Copyright (c) 1992, 1993
@@ -183,7 +183,7 @@
                stop("you must set the TERM environment variable");
        if (t_getent(&info, term) <= 0)
                stop("cannot find your termcap");
-       *combuf = NULL;
+       combuf = NULL;
        {
                register struct tcsinfo *p;
 



Home | Main Index | Thread Index | Old Index