diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-01-17 16:51:18 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-01-18 12:27:29 -0500 |
commit | fec892981ff8631ee380761c4b9ee640c9e93509 (patch) | |
tree | b664376790b9fd1f25b7b6ce496b34341edd866d /util.c | |
parent | e717edc1ac08e93cd2cc6990de4ae7d5602066e4 (diff) | |
download | bfs-fec892981ff8631ee380761c4b9ee640c9e93509.tar.xz |
Add some missing (void)'s
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -312,7 +312,7 @@ static int xrpmatch(const char *response) { } } -int ynprompt() { +int ynprompt(void) { fflush(stderr); char *line = xgetdelim(stdin, '\n'); |