mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-21 18:01:15 +00:00
Fix a format oops.
I had never noticed the error...
This commit is contained in:
parent
34bcf7faab
commit
ba3220e4d1
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue