From c561edaa729c655ab6980c43517bd8a864df6cc7 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Fri, 28 Jan 2005 06:51:44 +0000 Subject: [PATCH] Added a sanity check for the SIZEOF_INT64 define. --- options.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/options.c b/options.c index 5ab7b7f5..cbf7a527 100644 --- a/options.c +++ b/options.c @@ -214,6 +214,11 @@ static void print_rsync_version(enum logcode f) #if SIZEOF_INT64 < 8 rprintf(f, "WARNING: no 64-bit integers on this platform!\n"); #endif + if (sizeof (int64) != SIZEOF_INT64) { + rprintf(f, + "WARNING: size mismatch in SIZEOF_INT64 define (%d != %d)\n", + (int) SIZEOF_INT64, (int) sizeof (int64)); + } rprintf(f, "\n" -- 2.34.1