From 6cffd468e0b6421643007dc9086bc499c6d7cdad Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Thu, 12 Apr 2018 10:48:50 +0200 Subject: [PATCH] Fix invalid octal number --- src/Format.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Format.cpp b/src/Format.cpp index b7a8c20b94..3b3a10da52 100644 --- a/src/Format.cpp +++ b/src/Format.cpp @@ -232,7 +232,7 @@ string guessFormatFromContents(FileName const & fn) static string const zipStamp = "PK"; // ZIP containers (koffice, openoffice.org etc). - static string const nonzipStamp = "\008\0\0\0mimetypeapplication/"; + static string const nonzipStamp = "\010\0\0\0mimetypeapplication/"; // compress static string const compressStamp = "\037\235"; -- 2.39.2