Skip to content

Commit

Permalink
Add parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocobo1 committed Aug 24, 2018
1 parent 9ee791f commit ef80b2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nppAutoDetectIndent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ namespace
{
for (const char c : str)
{
if (c == '\t' || c == ' ')
if ((c == '\t') || (c == ' '))
continue;
return c;
}
Expand Down

0 comments on commit ef80b2c

Please sign in to comment.