diff options
| author | SulfurNitride <SulfurNitride@users.noreply.github.com> | 2026-06-26 15:06:28 -0500 |
|---|---|---|
| committer | SulfurNitride <SulfurNitride@users.noreply.github.com> | 2026-06-26 15:06:28 -0500 |
| commit | 715e55e6a4e953f02dc4a4b5f4375925504c1f83 (patch) | |
| tree | d897209b586ee0beaebd8bdf6bdbf606e7684fe2 /src | |
| parent | d16e12886c87b8b7545d3959bba45c98c8a7defa (diff) | |
Fix HKX trace build
Diffstat (limited to 'src')
| -rw-r--r-- | src/src/vfs/mo2filesystem.cpp | 6 |
1 files 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<unsigned long long>(snap.size), - static_cast<unsigned int>(snap.cached_mode)); + static_cast<unsigned long long>(snap.size)); } const std::string stagedPath = ctx->overwrite->stagingPath(path); const std::string owPath = ctx->overwrite->overwritePath(path); |
