From ba3220e4d16f032d6deb16563ecb67e19a2d437c Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 9 Oct 2018 12:36:39 +0900 Subject: [PATCH] Fix a format oops. I had never noticed the error... --- nq/source/host_cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nq/source/host_cmd.c b/nq/source/host_cmd.c index fa75e33e8..31bf539b5 100644 --- a/nq/source/host_cmd.c +++ b/nq/source/host_cmd.c @@ -90,7 +90,7 @@ Host_Status_f (void) print = SV_ClientPrintf; print ("host: %s\n", Cvar_VariableString ("hostname")); - print ("version: %4.2f\n", PACKAGE_VERSION); + print ("version: %4.2s\n", PACKAGE_VERSION); if (tcpipAvailable) print ("tcp/ip: %s\n", my_tcpip_address); print ("map: %s\n", sv.name);