mirror of
https://github.com/Lime3DS/Lime3DS
synced 2024-11-01 04:37:52 +00:00
file_util: Remove long long casting on buf.st_size in NGLOG statement
This commit is contained in:
parent
968569aa61
commit
0f4c9c9f47
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue