Fix warning for extra parens (#646)

* Fix warning for extra parens

* Committed too many files
This commit is contained in:
Phlosioneer 2019-04-01 20:27:55 -04:00 committed by huderlem
parent 4d938cb622
commit fe1c14db76
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ int main(int argc, char *argv[])
// get filename
for (arg=1; arg<argc; arg++)
{
if ((ARGV[0] != '-')) { argfile=ARGV; }
if (ARGV[0] != '-') { argfile=ARGV; }
if (strncmp("--silent", &ARGV[0], 7) == 0) { silent = 1; }
}