Make hex literal upper case for consistency

This commit is contained in:
Tomasz Lisowski 2022-05-01 22:06:59 +02:00
parent b45f48e600
commit ee69a49f01
No known key found for this signature in database
GPG Key ID: 07543DF310BD0930

View File

@ -2910,7 +2910,7 @@ CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item)
return false;
}
return (item->type & 0xff) == cJSON_True;
return (item->type & 0xFF) == cJSON_True;
}