Fixed string format issues reported by GCC/Clang

d_net.cpp:2874:25: warning: format specifies type 'int' but the argument has type 'unsigned long long' [-Wformat]
gl/utility/gl_clock.cpp:240:38: warning: format specifies type 'int' but the argument has type 'uint64_t' (aka 'unsigned long long') [-Wformat]
v_video.cpp:883:71: warning: format specifies type 'unsigned int' but the argument has type 'uint64_t' (aka 'unsigned long long') [-Wformat]
v_video.cpp:883:80: warning: format specifies type 'unsigned int' but the argument has type 'uint64_t' (aka 'unsigned long long') [-Wformat]
This commit is contained in:
alexey.lysiuk 2017-11-26 09:59:28 +02:00
commit 0667f2ec55
3 changed files with 6 additions and 3 deletions

View file

@ -26,6 +26,7 @@
//-----------------------------------------------------------------------------
#include <stddef.h>
#include <inttypes.h>
#include "version.h"
#include "menu/menu.h"
@ -2871,7 +2872,7 @@ CCMD (pings)
int i;
for (i = 0; i < MAXPLAYERS; i++)
if (playeringame[i])
Printf ("% 4d %s\n", currrecvtime[i] - lastrecvtime[i],
Printf ("% 4" PRId64 " %s\n", currrecvtime[i] - lastrecvtime[i],
players[i].userinfo.GetName());
}