diff options
author | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-05-22 09:44:34 +1000 |
---|---|---|
committer | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-05-22 09:44:34 +1000 |
commit | 4de137e02161ef8188775d50fe5dc8d9e9bb2216 (patch) | |
tree | 7fbc2b11fc371cdec7ed1b5cdbeb2224d429cace | |
parent | 5354988317f07e436f23c4022992b09623ef1322 (diff) |
Replace empty argument with void
-rw-r--r-- | include/sway/tree/container.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h index 64e8634a..493c70e2 100644 --- a/include/sway/tree/container.h +++ b/include/sway/tree/container.h @@ -221,6 +221,6 @@ void container_notify_child_title_changed(struct sway_container *container); /** * Return the height of a regular title bar. */ -size_t container_titlebar_height(); +size_t container_titlebar_height(void); #endif |