From 0a86642a6e69ac4ae65f7378e7743a2527832e09 Mon Sep 17 00:00:00 2001 From: Peter Haag Date: Thu, 28 Dec 2017 18:50:43 +0100 Subject: [PATCH] Fix 64bit fts compat issue in fts_compat.c --- bin/fts_compat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/fts_compat.c b/bin/fts_compat.c index 8474422..51e6f1a 100755 --- a/bin/fts_compat.c +++ b/bin/fts_compat.c @@ -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;