From 00f4d80d7eaeec05e5275fee9be02805afd4f368 Mon Sep 17 00:00:00 2001 From: avolkov Date: Wed, 26 Apr 2006 00:20:51 +0000 Subject: [PATCH] Minor problem reporting fix git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2327 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/starcon2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sc2/src/starcon2.c b/sc2/src/starcon2.c index 355404200..c493fb15e 100644 --- a/sc2/src/starcon2.c +++ b/sc2/src/starcon2.c @@ -329,7 +329,7 @@ main (int argc, char *argv[]) PlayerTwo = res_GetInteger ("config.player2control"); if (PlayerTwo >= NUM_TEMPLATES) { - fprintf (stderr, "Illegal control template '%d' for Player Two.\n", PlayerOne); + fprintf (stderr, "Illegal control template '%d' for Player Two.\n", PlayerTwo); PlayerTwo = CONTROL_TEMPLATE_KB_2; } }