From: antizealot1337 Date: Thu, 22 Feb 2018 23:18:29 +0000 (-0500) Subject: Add missing double quote from log message (#8257) X-Git-Tag: v238~63 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6719ca721117ad03b0775e32b092da702e8180bd;p=thirdparty%2Fsystemd.git Add missing double quote from log message (#8257) --- diff --git a/src/boot/bootctl.c b/src/boot/bootctl.c index 37a5f1d6341..ce77020aacf 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); }