raster pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=287834b0dafa2c96c8920c792348b48655f06766

commit 287834b0dafa2c96c8920c792348b48655f06766
Author: Vincent Torri <vincent.to...@gmail.com>
Date:   Sat Apr 17 10:59:14 2021 +0100

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

-- 


Reply via email to