From e5df489b7b5c71852d62fb69d9fb2ca87b9e97ad Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Mon, 11 Feb 2013 21:51:30 +0100 Subject: [PATCH] Correct typo in error message --- fairymax.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fairymax.c b/fairymax.c index 47b9ca5..a78c851 100644 --- a/fairymax.c +++ b/fairymax.c @@ -467,7 +467,7 @@ void LoadGame(char *name) f = fopen(inifile, "r"); if(f==NULL) - { printf("telluser piece-desription file '%s' not found\n", inifile); + { printf("telluser piece-description file '%s' not found\n", inifile); exit(0); } if(fscanf(f, "version 4.8(%c)", &c)!=1 || c != 'w') -- 1.7.0.4