Skip to content

Commit

Permalink
Update Repl.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
NotDSF committed Nov 8, 2021
1 parent 0e3e880 commit d42669d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CLI/Repl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ int main(int argc, char** argv)
return 0;
}

if (argc >= 2 && strcmp(argv[1], "--compile=text") == 0 || strcmp(argv[1], "--compile") == 0)
if ((argc >= 2 && strcmp(argv[1], "--compile=text") == 0) || strcmp(argv[1], "--compile") == 0)
{
int failed = 0;

Expand Down

0 comments on commit d42669d

Please sign in to comment.