mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Put around parentheses
This commit is contained in:
parent
c6727bd788
commit
af6128d976
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue