]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
Add missing double quote from log message (#8257)
authorantizealot1337 <cpridgen0@gmail.com>
Thu, 22 Feb 2018 23:18:29 +0000 (18:18 -0500)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Thu, 22 Feb 2018 23:18:29 +0000 (00:18 +0100)
src/boot/bootctl.c

index 37a5f1d63418f2fb9efe26bca554b696611e812c..ce77020aacf5834599fa35f5c678bfde75c9fdf6 100644 (file)
@@ -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);
                 }