Turn funcs() into funcs(void)

If they really do not take undefined number of arguments.
This commit is contained in:
Arkadiusz Hiler 2018-09-30 13:58:49 +03:00
parent d8200012fb
commit 1e70f7b19e
14 changed files with 19 additions and 19 deletions

View file

@ -22,7 +22,7 @@ uint32_t parse_position(const char *position) {
}
}
struct swaybar_config *init_config() {
struct swaybar_config *init_config(void) {
struct swaybar_config *config = calloc(1, sizeof(struct swaybar_config));
config->status_command = NULL;
config->pango_markup = false;