2
0

Standardize TRUE to true.

This commit is contained in:
Maarten Billemont 2018-06-17 00:36:31 -04:00
parent 9a37253461
commit f9289a3e9e

View File

@ -95,7 +95,7 @@ bool mpw_get_json_boolean(
if (!json_value)
return defaultValue;
return json_object_get_boolean( json_value ) == TRUE;
return json_object_get_boolean( json_value ) == true;
}
#endif