summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorWormHeamer2026-01-01 21:42:57 -0500
committerWormHeamer2026-01-01 21:42:57 -0500
commite586ee7eec149cc6923be4f3dd9d5b71bdf882b3 (patch)
tree64c40808d1a966c41bf6447da62b338fd254811a /main.c
parent3b48035f5b9475293ff614c2d5193cf525e55a44 (diff)
fix gcc errors
Diffstat (limited to 'main.c')
-rw-r--r--main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/main.c b/main.c
index 5df9e37..cbde76e 100644
--- a/main.c
+++ b/main.c
@@ -766,6 +766,7 @@ int motion(TxtLoc *lp, u32 c) {
switch (c) {
case '0':
if (!e.count) goto loop;
+ /* fallthrough */
case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9':
e.count = (e.count % 100000000) * 10 + c - '0';