Put around parentheses

This commit is contained in:
twinaphex 2016-12-15 11:59:33 +01:00
parent c6727bd788
commit af6128d976

View File

@ -27,7 +27,7 @@
bool string_is_empty(const char *data)
{
return data==NULL || *data=='\0';
return (data == NULL) || (*data == '\0');
}
bool string_is_equal(const char *a, const char *b)