Scope-eye.net Git Repository
/
liskon_frotz.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9139237
)
Removed pointless else.
author
David Griffith
<dave@661.org>
Thu, 25 May 2023 20:26:51 +0000
(13:26 -0700)
committer
David Griffith
<dave@661.org>
Thu, 25 May 2023 20:26:51 +0000
(13:26 -0700)
src/dos/dosinput.c
patch
|
blob
|
history
diff --git
a/src/dos/dosinput.c
b/src/dos/dosinput.c
index c0148bb3775f10aa73130838dfee4bfb471a4cb6..972190bd5069541cb71613661e5bac19308b89aa 100644
(file)
--- a/
src/dos/dosinput.c
+++ b/
src/dos/dosinput.c
@@
-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 */