From fa98ef112b09083675afcedae3617742a0f9d5e7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B6rn=20Jacke?= Date: Wed, 4 Jul 2012 10:33:58 +0200 Subject: [PATCH] replace: make the INT64_MAX define more portable --- lib/replace/replace.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/replace/replace.h b/lib/replace/replace.h index 40e0648a7a..fa7cc78fa4 100644 --- a/lib/replace/replace.h +++ b/lib/replace/replace.h @@ -587,7 +587,7 @@ int rep_strerror_r(int errnum, char *buf, size_t buflen); #endif #ifndef INT64_MAX -#define INT64_MAX 9223372036854775807 +#define INT64_MAX 9223372036854775807LL #endif #ifndef CHAR_BIT -- 2.34.1