From 815bcac0b94bb448de5acdd6ba925b8725240b4f Mon Sep 17 00:00:00 2001 From: Darren Tucker Date: Mon, 4 Apr 2016 11:07:59 +1000 Subject: Fix configure-time warnings for openssl test. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 7258cc0e5..32d4c2f65 100644 --- a/configure.ac +++ b/configure.ac @@ -2428,8 +2428,8 @@ if test "x$openssl" = "xyes" ; then if(fd == NULL) exit(1); - if ((rc = fprintf(fd ,"%08x (%s)\n", SSLeay(), - SSLeay_version(SSLEAY_VERSION))) <0) + if ((rc = fprintf(fd, "%08lx (%s)\n", (unsigned long)SSLeay(), + SSLeay_version(SSLEAY_VERSION))) < 0) exit(1); exit(0); -- cgit v1.2.3