]> git.sesse.net Git - wloh/commitdiff
Fix a missing argument to printf.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 18 Mar 2012 21:07:27 +0000 (22:07 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 18 Mar 2012 21:07:27 +0000 (22:07 +0100)
mcwordfeud.cpp

index c8d28a47b85bcf933374d49f1339378bcd4bee31..2bd4a5243cc1847b8251b5d4ed1ed48787dd2531 100644 (file)
@@ -80,7 +80,7 @@ int main(int argc, char **argv)
        }
 
        if (num_players > MAX_PLAYERS) {
-               fprintf(stderr, "Max %d players supported\n");
+               fprintf(stderr, "Max %d players supported\n", MAX_PLAYERS);
                exit(1);
        }