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

@ -593,7 +593,7 @@ void container_update_representation(struct sway_container *con) {
}
}
size_t container_titlebar_height() {
size_t container_titlebar_height(void) {
return config->font_height + TITLEBAR_V_PADDING * 2;
}