From: David Griffith Date: Mon, 1 May 2023 03:19:10 +0000 (-0700) Subject: Marked functions in src/dumb/ taking no parameters with the void parameter. X-Git-Url: https://scope-eye.net/git/?a=commitdiff_plain;h=5a3476355d5e5cec6d5a84a1baaff8ccb88618df;p=liskon_frotz.git Marked functions in src/dumb/ taking no parameters with the void parameter. --- diff --git a/src/dumb/dinput.c b/src/dumb/dinput.c index 7fc642d..3f405ec 100644 --- a/src/dumb/dinput.c +++ b/src/dumb/dinput.c @@ -622,7 +622,7 @@ zword os_read_mouse(void) return 0; } -void os_tick() +void os_tick(void) { /* Nothing here yet */ }