mnt: remove unnecessary quote in a debug message

This commit is contained in:
Robert Swiecki 2022-08-09 11:32:49 +02:00
parent 38fcf4f752
commit 4128a7cbd9

2
mnt.cc
View File

@ -129,7 +129,7 @@ static bool isDir(const char* path) {
}
static bool mountPt(mount_t* mpt, const char* newroot, const char* tmpdir) {
LOG_D("Mounting '%s'", describeMountPt(*mpt).c_str());
LOG_D("Mounting %s", describeMountPt(*mpt).c_str());
char dstpath[PATH_MAX];
snprintf(dstpath, sizeof(dstpath), "%s/%s", newroot, mpt->dst.c_str());