mirror of
https://github.com/curl/curl.git
synced 2026-04-17 08:31:42 +03:00
typecase to please the compiler gods
This commit is contained in:
parent
3938e0f58b
commit
46c2bc4bb6
1 changed files with 1 additions and 1 deletions
|
|
@ -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';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue