Make len portable (as best as can tested with a 32 bit machine).
This commit is contained in:
@@ -82,7 +82,11 @@ typedef struct localListBase
|
|||||||
/* note: keep this struct aligned (e.g., irix/gcc) - Hos */
|
/* note: keep this struct aligned (e.g., irix/gcc) - Hos */
|
||||||
typedef struct MemHead {
|
typedef struct MemHead {
|
||||||
int tag1;
|
int tag1;
|
||||||
unsigned int len;
|
#if defined(WIN64)
|
||||||
|
unsigned long long len;
|
||||||
|
#else
|
||||||
|
unsigned long len;
|
||||||
|
#endif
|
||||||
struct MemHead *next,*prev;
|
struct MemHead *next,*prev;
|
||||||
const char * name;
|
const char * name;
|
||||||
const char * nextname;
|
const char * nextname;
|
||||||
|
Reference in New Issue
Block a user