1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-14 20:10:08 +03:00

Cosmetics

This commit is contained in:
Bertrand Songis 2019-06-17 11:59:33 +02:00
parent 196da35c6e
commit 1f1ccf277c
No known key found for this signature in database
GPG key ID: F189F79290FEC50F

View file

@ -46,11 +46,7 @@ char zchar2char(int8_t idx)
char char2lower(char c)
{
if(c >= 'A' && c <= 'Z'){
return c+32;
}
else
return c;
return (c >= 'A' && c <= 'Z') ? c + 32 : c;
}
int8_t char2zchar(char c)