From 781a0c08467a29118be85e6ecd035d35fb105e84 Mon Sep 17 00:00:00 2001 From: Kai Blin Date: Sun, 4 Apr 2010 13:42:15 +0200 Subject: lib/replace: use correct inttypes in crypt.c This makes the android crossbuild slightly less broken. --- lib/replace/crypt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/replace/crypt.c b/lib/replace/crypt.c index 22341ce511..aeb8f6e941 100644 --- a/lib/replace/crypt.c +++ b/lib/replace/crypt.c @@ -46,11 +46,11 @@ #ifndef long32 -#define long32 int32 +#define long32 int32_t #endif #ifndef long64 -#define long64 int64 +#define long64 int64_t #endif #ifndef ufc_long -- cgit