Fix logging the file size on stats wrapper

This commit is contained in:
Maschell 2022-08-07 19:23:29 +02:00
parent aa58f1745f
commit 78ca44dbf8
1 changed files with 1 additions and 1 deletions

View File

@ -332,7 +332,7 @@ FSError FSWrapper::FSGetStatWrapper(const char *path, FSStat *stats) {
stats->owner = path_stat.st_uid; stats->owner = path_stat.st_uid;
stats->group = path_stat.st_gid; stats->group = path_stat.st_gid;
} }
DEBUG_FUNCTION_LINE_VERBOSE("[%s] Stats file for %s (%s), size %016llX", getName().c_str(), path, newPath.c_str(), stats->size); DEBUG_FUNCTION_LINE_VERBOSE("[%s] Stats file for %s (%s), size %08X", getName().c_str(), path, newPath.c_str(), stats->size);
} }
return result; return result;
} }