sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 501c788f5f2a4a4b20ca8bd73bc2c3d06b5fc6a8
parent c352cae55e8460d48cdc77542d742c94932fd447
Author: Adam Mizerski <adam@mizerski.pl>
Date:   Sun,  5 Nov 2017 20:09:16 +0100

Fix init_tray function declaration

This fixes compilation failure:
error: call to function 'init_tray' without a real prototype

Diffstat:
Minclude/swaybar/tray/tray.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/swaybar/tray/tray.h b/include/swaybar/tray/tray.h @@ -27,6 +27,6 @@ void tray_upkeep(struct bar *bar); /** * Initializes the tray with D-Bus */ -void init_tray(); +void init_tray(struct bar *bar); #endif /* _SWAYBAR_TRAY_H */