* as/link/lkar.h: changed type of ar_size to size_t to make it work on
authorborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Fri, 23 Jan 2009 20:12:27 +0000 (20:12 +0000)
committerborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Fri, 23 Jan 2009 20:12:27 +0000 (20:12 +0000)
  ppc Mac OS X (off_t is 64 bit and is not converted to 32 bit
  unsigned int when calling new(), since asxxxx doesn't use function
  prototypes)

git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@5347 4a8a32a2-be11-0410-ad9d-d568d2c75423

ChangeLog
as/link/lkar.h

index d910cca26a33dea32b0538d59a0366bdd3cf7ef6..82d96ade0117926424b3e2d96c7c4a3189cf4c94 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2009-01-23 Borut Razem <borut.razem AT siol.net>
+
+       * as/link/lkar.h: changed type of ar_size to size_t to make it work on
+         ppc Mac OS X (off_t is 64 bit and is not converted to 32 bit
+         unsigned int when calling new(), since asxxxx doesn't use function
+         prototypes)
+
 2009-01-21 Borut Razem <borut.razem AT siol.net>
 
        * as/link/lkar.h: sgetl and sputl are independent of endianness
index e63dacbe294adb21b8b294c330be899d015a1794..748c7f44a79e76b4e5a38d4d9dceb7015337b51b 100644 (file)
@@ -75,7 +75,7 @@ struct ar_hdr                     /* archive member header */
   uid_t ar_uid;                   /* archive member user identification */
   gid_t ar_gid;                   /* archive member group identification */
   mode_t ar_mode;                 /* archive member mode (octal) */
-  off_t ar_size;                  /* archive member size */
+  size_t ar_size;                 /* archive member size */
 };
 
 #endif /* __LKAR_H */