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 | |
parent | e717edc1ac08e93cd2cc6990de4ae7d5602066e4 (diff) | |
download | bfs-fec892981ff8631ee380761c4b9ee640c9e93509.tar.xz |
Add some missing (void)'s
-rw-r--r-- | mtab.c | 2 | ||||
-rw-r--r-- | util.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -102,7 +102,7 @@ fail: return -1; } -struct bfs_mtab *bfs_mtab_parse() { +struct bfs_mtab *bfs_mtab_parse(void) { struct bfs_mtab *mtab = malloc(sizeof(*mtab)); if (!mtab) { return NULL; @@ -312,7 +312,7 @@ static int xrpmatch(const char *response) { } } -int ynprompt() { +int ynprompt(void) { fflush(stderr); char *line = xgetdelim(stdin, '\n'); |