diff options
author | antizealot1337 <cpridgen0@gmail.com> | 2018-02-22 18:18:29 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2018-02-23 00:18:29 +0100 |
commit | 6719ca721117ad03b0775e32b092da702e8180bd (patch) | |
tree | 37f175241bcd7bed9433567b9ba9ddc179add879 /src/boot | |
parent | e8a3144ec4ff332bd63644e468a98e1a7e06e7e4 (diff) | |
download | systemd-6719ca721117ad03b0775e32b092da702e8180bd.tar.gz |
Add missing double quote from log message (#8257)
Diffstat (limited to 'src/boot')
-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 37a5f1d634..ce77020aac 100644 --- a/src/boot/bootctl.c +++ b/src/boot/bootctl.c @@ -410,7 +410,7 @@ static int copy_file_with_version_check(const char *from, const char *to, bool f return r; if (lseek(fd_from, 0, SEEK_SET) == (off_t) -1) - return log_error_errno(errno, "Failed to seek in \%s\": %m", from); + return log_error_errno(errno, "Failed to seek in \"%s\": %m", from); fd_to = safe_close(fd_to); } |