Add missing double quote from log message (#8257)

This commit is contained in:
antizealot1337 2018-02-22 18:18:29 -05:00 committed by Zbigniew Jędrzejewski-Szmek
parent e8a3144ec4
commit 6719ca7211

View 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);
}