Remove superfluous extra parens.
authorDavid Griffith <dave@661.org>
Tue, 8 Oct 2019 06:31:54 +0000 (23:31 -0700)
committerDavid Griffith <dave@661.org>
Tue, 8 Oct 2019 06:42:19 +0000 (23:42 -0700)
src/dumb/dumb_init.c

index e8c982beedd5cf25f53cfcac8209cd1ad8aff127..9d4700556917e177c7839498845220647b47e570 100644 (file)
@@ -147,7 +147,7 @@ void os_process_arguments(int argc, char *argv[])
                }
        } while (c != EOF);
 
-       if ((argv[zoptind] == NULL)) {
+       if (argv[zoptind] == NULL) {
                printf("FROTZ V%s\tDumb interface.\n", VERSION);
                puts(INFORMATION);
                puts(INFO2);