fix lack of return in tickHyprctl

This commit is contained in:
vaxerski 2022-07-31 12:35:10 +02:00
parent edac94bed1
commit e2bc07d276

View file

@ -1486,6 +1486,8 @@ int hyprCtlTick(void* data) {
HyprCtl::tickHyprCtl(); // so that we dont get that race condition multithread bullshit HyprCtl::tickHyprCtl(); // so that we dont get that race condition multithread bullshit
wl_event_source_timer_update(hyprCtlTickSource, 16); // tick it 60/s, should be enough. wl_event_source_timer_update(hyprCtlTickSource, 16); // tick it 60/s, should be enough.
return 0;
} }
void CCompositor::startHyprCtlTick() { void CCompositor::startHyprCtlTick() {