diff --git a/mnt.cc b/mnt.cc index ba8a154..70440b9 100644 --- a/mnt.cc +++ b/mnt.cc @@ -178,8 +178,8 @@ static bool mountPt(mount_t* mpt, const char* newroot, const char* tmpdir) { return false; } if (!util::writeToFd(fd, mpt->src_content.data(), mpt->src_content.length())) { - LOG_W("Writing %zu bytes to '%s' failed", mpt->src_content.length(), - srcpath); + LOG_W( + "Writing %zu bytes to '%s' failed", mpt->src_content.length(), srcpath); close(fd); return false; } diff --git a/user.cc b/user.cc index dc2d151..a335e2d 100644 --- a/user.cc +++ b/user.cc @@ -48,15 +48,15 @@ constexpr char kNewUidPath[] = #ifdef NEWUIDMAP_PATH - STR(NEWUIDMAP_PATH); + STR(NEWUIDMAP_PATH); #else - "/usr/bin/newuidmap"; + "/usr/bin/newuidmap"; #endif constexpr char kNewGidPath[] = #ifdef NEWGIDMAP_PATH - STR(NEWGIDMAP_PATH); + STR(NEWGIDMAP_PATH); #else - "/usr/bin/newgidmap"; + "/usr/bin/newgidmap"; #endif namespace user {