diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2017-11-05 20:09:16 +0100 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2017-11-05 20:09:16 +0100 |
| commit | 135a9c54aafb6372482fd9779649895630c6bd32 (patch) | |
| tree | d69269915937672c459df98bab415d7b671e5ac5 /include/swaybar/tray | |
| parent | 2e2d8a565c59788fb6912714e323a800275da5bf (diff) | |
Fix init_tray function declaration
This fixes compilation failure:
error: call to function 'init_tray' without a real prototype
Diffstat (limited to 'include/swaybar/tray')
| -rw-r--r-- | include/swaybar/tray/tray.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/swaybar/tray/tray.h b/include/swaybar/tray/tray.h index b718e555..2d0662be 100644 --- 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 */ |
