fstab-generator: fix debug log

This commit is contained in:
Yu Watanabe 2019-02-18 11:29:45 +09:00
parent b117044c09
commit 7731c1c20a
1 changed files with 1 additions and 1 deletions

View File

@ -571,7 +571,7 @@ static int parse_fstab(bool initrd) {
noauto = fstab_test_yes_no_option(me->mnt_opts, "noauto\0" "auto\0");
nofail = fstab_test_yes_no_option(me->mnt_opts, "nofail\0" "fail\0");
log_debug("Found entry what=%s where=%s type=%s makefs=%s nofail=%s noauto=%s",
log_debug("Found entry what=%s where=%s type=%s makefs=%s noauto=%s nofail=%s",
what, where, me->mnt_type,
yes_no(makefs),
yes_no(noauto), yes_no(nofail));