From 5a188e6a93ea98890db4a360ccd2cf1279a65652 Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Fri, 26 Apr 2013 11:01:44 +0200 Subject: [PATCH] Fix compiler warnings MaxQi LoadGame was declared as int rather than void and did not return anything. The return statements in int main did not return a value. --- maxqi.c | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/maxqi.c b/maxqi.c index cb7bc7e..1ee059f 100644 --- a/maxqi.c +++ b/maxqi.c @@ -52,7 +52,7 @@ /* add array for specifying board zones */ /* add zone limiter for each piece */ /* change promotion code to act when crossing river */ -/* remove stalemate code */ +/* remove stalemate code */ /* G) o[] and oo[] made int, to work on big-endian machines */ /***************************************************************************/ @@ -88,9 +88,9 @@ int GetTickCount() // with thanks to Tord gettimeofday(&t, NULL); return t.tv_sec*1000 + t.tv_usec/1000; } -#ifndef INI_FILE -#define INI_FILE "qmax.ini" -#endif +#ifndef INI_FILE +#define INI_FILE "qmax.ini" +#endif #else @@ -399,8 +399,8 @@ void PrintVariants() fclose(f); } - -int LoadGame(char *name) + +void LoadGame(char *name) { int i, j, count=0; char c, buf[80]; static int currentVariant; @@ -531,7 +531,7 @@ int main(int argc, char **argv) continue; } if (!fgets(line, 256, stdin)) - return; + return 1; if (line[0] == '\n') continue; sscanf(line, "%s", command); @@ -583,7 +583,7 @@ int main(int argc, char **argv) } if (!strcmp(command, "quit")) /* exit engine */ - return; + return 0; if (!strcmp(command, "force")) { /* computer plays neither */ Computer = EMPTY; -- 1.7.0.4