Remove extraneous parentheses.
authorDavid Griffith <dave@661.org>
Wed, 4 Sep 2019 02:02:29 +0000 (02:02 +0000)
committerDavid Griffith <dave@661.org>
Wed, 4 Sep 2019 06:55:14 +0000 (23:55 -0700)
src/curses/ux_init.c

index 0fcbfcfa4ea5197a737feb5a97e394b6c91974c7..fd801b60fd413cc394cdfedfa6baf5f624869742 100644 (file)
@@ -316,7 +316,7 @@ void os_process_arguments (int argc, char *argv[])
 
     } while (c != EOF);
 
-    if ((argv[zoptind] == NULL)) {
+    if (argv[zoptind] == NULL) {
        printf("FROTZ V%s\tCurses interface.  ", VERSION);
 
 #ifndef NO_SOUND