From 715e55e6a4e953f02dc4a4b5f4375925504c1f83 Mon Sep 17 00:00:00 2001 From: SulfurNitride Date: Fri, 26 Jun 2026 15:06:28 -0500 Subject: Fix HKX trace build --- src/src/vfs/mo2filesystem.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/src/vfs/mo2filesystem.cpp b/src/src/vfs/mo2filesystem.cpp index 84f0471..dde194e 100644 --- a/src/src/vfs/mo2filesystem.cpp +++ b/src/src/vfs/mo2filesystem.cpp @@ -2024,12 +2024,10 @@ void mo2_open(fuse_req_t req, fuse_ino_t ino, struct fuse_file_info* fi) if (tracePath) { std::fprintf(stderr, "[VFS] open writable path='%s' real='%s' flags=0x%x " - "truncate=%d backing=%d origin='%s' size=%llu mode=%o\n", + "truncate=%d backing=%d size=%llu\n", path.c_str(), realPath.c_str(), fi->flags, truncateOnOpen ? 1 : 0, isBacking ? 1 : 0, - snap.origin.c_str(), - static_cast(snap.size), - static_cast(snap.cached_mode)); + static_cast(snap.size)); } const std::string stagedPath = ctx->overwrite->stagingPath(path); const std::string owPath = ctx->overwrite->overwritePath(path); -- cgit v1.3.1