From 3fc831f9eb906a5471222e584fc67c1590c7afc3 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 6 May 2004 07:24:47 +0000 Subject: typecast the unsigned long to plain long to prevent compiler warnings --- lib/version.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/version.c b/lib/version.c index 9e553673d..150d52b31 100644 --- a/lib/version.c +++ b/lib/version.c @@ -47,7 +47,7 @@ static void getssl_version(char *ptr, long *num) unsigned long ssleay_value; sub[1]='\0'; ssleay_value=SSLeay(); - *num = ssleay_value; + *num = (long)ssleay_value; if(ssleay_value < 0x906000) { ssleay_value=SSLEAY_VERSION_NUMBER; sub[0]='\0'; -- cgit v1.2.3