Fix 64bit fts compat issue in fts_compat.c
This commit is contained in:
parent
cedc8479a8
commit
0a86642a6e
@ -949,7 +949,7 @@ fts_alloc(FTS *sp, const char *name, size_t namelen)
|
||||
#endif
|
||||
|
||||
#ifndef ALIGN
|
||||
#define ALIGN(p) (((u_int)(p) + ALIGNBYTES) &~ ALIGNBYTES)
|
||||
#define ALIGN(p) (((u_long)(p) + ALIGNBYTES) &~ ALIGNBYTES)
|
||||
#endif
|
||||
|
||||
size_t len;
|
||||
|
Loading…
x
Reference in New Issue
Block a user