Skip to content
Snippets Groups Projects
Commit 46c2bc4b authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

typecase to please the compiler gods

parent 3938e0f5
No related branches found
No related tags found
No related merge requests found
......@@ -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';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment