diff options
| author | GriffinR <griffin.g.richards@gmail.com> | 2019-09-11 11:39:53 -0400 |
|---|---|---|
| committer | huderlem <huderlem@gmail.com> | 2019-09-16 19:22:07 -0500 |
| commit | 2884f4ee4a392920eea0de10bb1f36806c4908d9 (patch) | |
| tree | 23404c85afcd374c4f48a96311f422278457ce12 /tools | |
| parent | b46c4b670339754ca83fd9f2809f13d4de0dc6a5 (diff) | |
Fix extraneous parentheses warning
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/gbafix/gbafix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gbafix/gbafix.c b/tools/gbafix/gbafix.c index 9088cdc5f..598e43aa0 100644 --- a/tools/gbafix/gbafix.c +++ b/tools/gbafix/gbafix.c @@ -206,7 +206,7 @@ int main(int argc, char *argv[]) // parse command line for (arg=1; arg<argc; arg++) { - if ((ARGV[0] == '-')) + if (ARGV[0] == '-') { switch (ARGV[1]) { |
