From 6719ca721117ad03b0775e32b092da702e8180bd Mon Sep 17 00:00:00 2001 From: antizealot1337 Date: Thu, 22 Feb 2018 18:18:29 -0500 Subject: [PATCH] Add missing double quote from log message (#8257) --- src/boot/bootctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }