From 78ca44dbf8cffdb546928c2aeb2f2557e7d4cf81 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sun, 7 Aug 2022 19:23:29 +0200 Subject: [PATCH] Fix logging the file size on stats wrapper --- src/FSWrapper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FSWrapper.cpp b/src/FSWrapper.cpp index 7db1a40..62ae0bd 100644 --- a/src/FSWrapper.cpp +++ b/src/FSWrapper.cpp @@ -332,7 +332,7 @@ FSError FSWrapper::FSGetStatWrapper(const char *path, FSStat *stats) { stats->owner = path_stat.st_uid; 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; }