From 287834b0dafa2c96c8920c792348b48655f06766 Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Sat, 17 Apr 2021 10:59:14 +0100 Subject: [PATCH] Fix TIFF file signature in big endian Summary: see https://www.adobe.io/content/dam/udp/en/open/standards/tiff/TIFF6.pdf page 13 Reviewers: raster, bu5hm4n Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D12258 --- src/lib/elementary/elm_cnp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elementary/elm_cnp.c b/src/lib/elementary/elm_cnp.c index eb820766f0..ded6e10503 100644 --- a/src/lib/elementary/elm_cnp.c +++ b/src/lib/elementary/elm_cnp.c @@ -64,7 +64,7 @@ static const Mimetype_Content_Matcher matchers[] = { {{0x47, 0x49, 0x46, 0x38, 0x37, 0x61}, 6, "image/gif"}, {{0x47, 0x49, 0x46, 0x38, 0x39, 0x61}, 6, "image/gif"}, {{0x49, 0x49, 0x2A, 00}, 4, "image/tiff"}, - {{0x49, 0x4D, 0x00, 0x2A}, 4, "image/tiff"}, + {{0x4D, 0x4D, 0x00, 0x2A}, 4, "image/tiff"}, {{0},0, NULL} };