mirror of
https://github.com/swaywm/sway.git
synced 2025-10-31 22:25:26 -04:00
Turn funcs() into funcs(void)
If they really do not take undefined number of arguments.
This commit is contained in:
parent
d8200012fb
commit
1e70f7b19e
14 changed files with 19 additions and 19 deletions
|
|
@ -32,7 +32,7 @@ void sway_terminate(int exit_code) {
|
|||
exit(exit_code);
|
||||
}
|
||||
|
||||
static void daemonize() {
|
||||
static void daemonize(void) {
|
||||
int fds[2];
|
||||
if (pipe(fds) != 0) {
|
||||
wlr_log(WLR_ERROR, "Failed to pipe");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue