Verified Commit f4482c58 authored by Tommaso Tocci's avatar Tommaso Tocci
Browse files

fix openat log parameters

parent a2d5e9f4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -78,7 +78,7 @@ int openat(int dirfd, const char *cpath, int flags, ...) {
        return -1;
    }

    CTX->log()->trace("{}() called with fd: {}, path: {}", __func__, cpath);
    CTX->log()->trace("{}() called with fd: {}, path: {}, flags: {}, mode: {}", __func__, dirfd, cpath, flags, mode);

    std::string resolved;