file_util: Remove long long casting on buf.st_size in NGLOG statement

This commit is contained in:
Daniel Lim Wee Soong 2018-03-27 23:31:08 +08:00
parent 968569aa61
commit 0f4c9c9f47

View file

@ -348,7 +348,7 @@ u64 GetSize(const std::string& filename) {
if (stat(filename.c_str(), &buf) == 0)
#endif
{
NGLOG_TRACE(Common_Filesystem, "{}: {}", filename, (long long)buf.st_size);
NGLOG_TRACE(Common_Filesystem, "{}: {}", filename, buf.st_size);
return buf.st_size;
}