From: Steinar H. Gunderson Date: Sun, 18 Mar 2012 21:07:27 +0000 (+0100) Subject: Fix a missing argument to printf. X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=f9e3c647cd9594de83d46f5bf7be5c9b7cf9dc9b;p=wloh Fix a missing argument to printf. --- diff --git a/mcwordfeud.cpp b/mcwordfeud.cpp index c8d28a4..2bd4a52 100644 --- a/mcwordfeud.cpp +++ b/mcwordfeud.cpp @@ -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); }