Commit 46c2bc4b authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

typecase to please the compiler gods

parent 3938e0f5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -46,7 +46,7 @@ static void getssl_version(char *ptr, long *num)
    }
    else {
      if(ssleay_value&0xff0) {
        sub[0]=((ssleay_value>>4)&0xff) + 'a' -1;
        sub[0]=(char)((ssleay_value>>4)&0xff) + 'a' -1;
      }
      else
        sub[0]='\0';