Fix 64bit fts compat issue in fts_compat.c

This commit is contained in:
Peter Haag 2017-12-28 18:50:43 +01:00
parent cedc8479a8
commit 0a86642a6e

View File

@ -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;