diff options
author | Karel Zak <kzak@redhat.com> | 2015-08-06 13:59:38 +0200 |
---|---|---|
committer | Karel Zak <kzak@redhat.com> | 2015-08-06 13:59:38 +0200 |
commit | a592ab6ae891ceb63c7115257a0de0c6c45a2f42 (patch) | |
tree | a7b1cd5620af4da54ec75ecef7417ee38448ebcd | |
parent | 93b1da852547c7f6adfaf1b3ff529927202a496d (diff) |
bootctl: fix path in log message
-rw-r--r-- | src/boot/bootctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/bootctl.c b/src/boot/bootctl.c index 359fde9998..ac1711b318 100644 --- a/src/boot/bootctl.c +++ b/src/boot/bootctl.c @@ -818,7 +818,7 @@ static int remove_boot_efi(const char *esp_path) { if (r < 0) return log_error_errno(errno, "Failed to remove \"%s/%s\": %m", p, de->d_name); - log_info("Removed \"%s/\%s\".", p, de->d_name); + log_info("Removed \"%s/%s\".", p, de->d_name); } c++; |