From 0e4813b1b6dbb8a2a85c5b6a42486cfa52724d68 Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Wed, 23 Oct 2013 20:47:16 +0200 Subject: [PATCH] Fix MaxQi printinf variants The bug that with some compilers made Fairy-Max fail reading its ini file was still present in MaxQi, and doing the same thing there. --- maxqi.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/maxqi.c b/maxqi.c index 1ee059f..f050292 100644 --- a/maxqi.c +++ b/maxqi.c @@ -382,7 +382,7 @@ void CopyBoard(int s) void PrintVariants() { - int i, j, count=0; char c, buf[80]; + int i, j, count=0; char c = EOF+1, buf[80]; FILE *f; f = fopen(inifile, "r"); -- 1.7.0.4