Removed pointless else.
authorDavid Griffith <dave@661.org>
Thu, 25 May 2023 20:26:51 +0000 (13:26 -0700)
committerDavid Griffith <dave@661.org>
Thu, 25 May 2023 20:26:51 +0000 (13:26 -0700)
src/dos/dosinput.c

index c0148bb3775f10aa73130838dfee4bfb471a4cb6..972190bd5069541cb71613661e5bac19308b89aa 100644 (file)
@@ -201,9 +201,8 @@ static bool out_of_time(void)
                now += 24L * 3600 * 10;
 
                return now >= limit;
-       } else
-               return FALSE;
-
+       }
+       return FALSE;
 } /* out_of_time */