Fix init_tray function declaration

This fixes compilation failure:
error: call to function 'init_tray' without a real prototype
This commit is contained in:
Adam Mizerski 2017-11-05 20:09:16 +01:00
parent c352cae55e
commit 501c788f5f

View file

@ -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 */