Make len portable (as best as can tested with a 32 bit machine).

This commit is contained in:
Guillermo S. Romero 2010-04-27 18:21:49 +00:00
parent c80d0f1f85
commit d6b71243c2

@ -82,7 +82,11 @@ typedef struct localListBase
/* note: keep this struct aligned (e.g., irix/gcc) - Hos */
typedef struct MemHead {
int tag1;
unsigned int len;
#if defined(WIN64)
unsigned long long len;
#else
unsigned long len;
#endif
struct MemHead *next,*prev;
const char * name;
const char * nextname;