mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 15:59:52 +03:00
fix compile errors on OSX for standalone
This commit is contained in:
@@ -692,7 +692,7 @@ void Helpers::CharToUpperUTF8(char * c) {
|
||||
switch (*c) {
|
||||
case (char)0xC3:
|
||||
// grave, acute, circumflex, diaeresis, etc.
|
||||
if ((p_v >= 0xA0) && (p_v <= 0xBE)) {
|
||||
if ((p_v >= (char)0xA0) && (p_v <= (char)0xBE)) {
|
||||
*p -= 0x20;
|
||||
}
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user