]> git.pld-linux.org Git - packages/libextractor.git/blobdiff - libextractor-64bit.patch
- updated for 0.5.19a
[packages/libextractor.git] / libextractor-64bit.patch
index 465f8091710e3135f2e02e32070ba5a94fac3035..2b3d618f968a0dc5b637c80d4e145fcfdd3d9365 100644 (file)
@@ -2,23 +2,23 @@ pack.c: In function 'cat_unpack':
 pack.c:407: warning: left shift count >= width of type
 pack.c:423: warning: left shift count >= width of type
 
---- libextractor-0.5.9/src/plugins/pack.c.orig 2005-09-18 11:54:35.000000000 +0200
-+++ libextractor-0.5.9/src/plugins/pack.c      2006-02-19 11:44:07.330679750 +0100
-@@ -404,7 +404,7 @@
-       *swordp |= *bp++ << 24;
-       
-       if ( (sizeof(swordp) > 4) && (*swordp & 0x80000000) )
--        *swordp |= (~0) << ((sizeof(sword)-4) * 8);
-+        *swordp |= (~0L) << ((sizeof(sword)-4) * 8);
-       
-       ++swordp;
-       npacked += 4;
-@@ -420,7 +420,7 @@
-       *swordp |= *bp++;
-       
-       if ( (sizeof(swordp) > 4) && (*swordp & 0x80000000) )
--        *swordp |= (~0) << ((sizeof(sword)-4) * 8);
-+        *swordp |= (~0L) << ((sizeof(sword)-4) * 8);
-       
-       ++swordp;
-       npacked += 4;
+--- libextractor-0.5.19/src/plugins/pack.c.orig        2007-07-29 10:35:18.000000000 +0200
++++ libextractor-0.5.19/src/plugins/pack.c     2008-01-22 21:39:53.811402372 +0100
+@@ -447,7 +447,7 @@
+               *swordp |= *bp++ << 24;
+               if ((sizeof (swordp) > 4) && (*swordp & 0x80000000))
+-                *swordp |= (~0) << ((sizeof (sword) - 4) * 8);
++                *swordp |= (~0L) << ((sizeof (sword) - 4) * 8);
+               ++swordp;
+               npacked += 4;
+@@ -464,7 +464,7 @@
+               *swordp |= *bp++;
+               if ((sizeof (swordp) > 4) && (*swordp & 0x80000000))
+-                *swordp |= (~0) << ((sizeof (sword) - 4) * 8);
++                *swordp |= (~0L) << ((sizeof (sword) - 4) * 8);
+               ++swordp;
+               npacked += 4;
This page took 0.054044 seconds and 4 git commands to generate.