Commit 3fc831f9 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

typecast the unsigned long to plain long to prevent compiler warnings

parent 9f660862
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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';