diff options
author | Martin Reindl <martin@cvs.openbsd.org> | 2006-12-14 10:14:06 +0000 |
---|---|---|
committer | Martin Reindl <martin@cvs.openbsd.org> | 2006-12-14 10:14:06 +0000 |
commit | 9309d7add131a01a17b3071686148f655fb83a13 (patch) | |
tree | 66b0fd0405d19bc2b2c1c0297cf1fe161794f714 /games/backgammon/common_source/init.c | |
parent | 030f2aba6c4fac3427aa48054ff9234b21505485 (diff) |
fix DEBUG by renaming a variable colliding with ncurses
found by Sascha Welter, ok otto@
Diffstat (limited to 'games/backgammon/common_source/init.c')
-rw-r--r-- | games/backgammon/common_source/init.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/backgammon/common_source/init.c b/games/backgammon/common_source/init.c index ab50537eef5..85ae503e1f9 100644 --- a/games/backgammon/common_source/init.c +++ b/games/backgammon/common_source/init.c @@ -1,4 +1,4 @@ -/* $OpenBSD: init.c,v 1.8 2006/10/29 20:02:41 martin Exp $ */ +/* $OpenBSD: init.c,v 1.9 2006/12/14 10:14:05 martin Exp $ */ /* * Copyright (c) 1980, 1993 @@ -33,7 +33,7 @@ #if 0 static char sccsid[] = "@(#)init.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$OpenBSD: init.c,v 1.8 2006/10/29 20:02:41 martin Exp $"; +static char rcsid[] = "$OpenBSD: init.c,v 1.9 2006/12/14 10:14:05 martin Exp $"; #endif #endif /* not lint */ @@ -43,7 +43,7 @@ static char rcsid[] = "$OpenBSD: init.c,v 1.8 2006/10/29 20:02:41 martin Exp $"; #ifdef DEBUG #include <stdio.h> -FILE *trace; +FILE *ftrace; #endif #include <back.h> |