make indent

This commit is contained in:
Robert Swiecki 2020-07-09 17:29:02 +02:00
parent a2d5b07c76
commit f7554882fe
2 changed files with 6 additions and 6 deletions

4
mnt.cc
View File

@ -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;
}

View File

@ -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 {