Minor bug fix due to MAXOFFSET_T constant being too large on 32-bit systems.
This commit is contained in:
parent
6d747ae039
commit
4a118b6227
|
@ -48,7 +48,12 @@
|
||||||
#define DEV_BSHIFT 9 /* log2(DEV_BSIZE) */
|
#define DEV_BSHIFT 9 /* log2(DEV_BSIZE) */
|
||||||
|
|
||||||
#define MAXNAMELEN 256
|
#define MAXNAMELEN 256
|
||||||
|
|
||||||
|
#ifdef _LP64
|
||||||
#define MAXOFFSET_T 0x7fffffffffffffffl
|
#define MAXOFFSET_T 0x7fffffffffffffffl
|
||||||
|
#else
|
||||||
|
#define MAXOFFSET_T 0x7fffffffl
|
||||||
|
#endif
|
||||||
|
|
||||||
#define UID_NOBODY 60001 /* user ID no body */
|
#define UID_NOBODY 60001 /* user ID no body */
|
||||||
#define GID_NOBODY UID_NOBODY
|
#define GID_NOBODY UID_NOBODY
|
||||||
|
|
Loading…
Reference in New Issue