mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-04-23 04:25:42 +02:00
module/i3-commonh: I3_IPC_REPLY_TYPE_SYNC is relatively new
And is for example not present in our CI.
This commit is contained in:
parent
e40b50bf5e
commit
06ae704ded
1 changed files with 2 additions and 0 deletions
|
@ -253,9 +253,11 @@ i3_receive_loop(int abort_fd, int sock,
|
||||||
case I3_IPC_REPLY_TYPE_TICK:
|
case I3_IPC_REPLY_TYPE_TICK:
|
||||||
pkt_handler = cbs->reply_tick;
|
pkt_handler = cbs->reply_tick;
|
||||||
break;
|
break;
|
||||||
|
#if defined(I3_IPC_REPLY_TYPE_SYNC)
|
||||||
case I3_IPC_REPLY_TYPE_SYNC:
|
case I3_IPC_REPLY_TYPE_SYNC:
|
||||||
pkt_handler = cbs->reply_sync;
|
pkt_handler = cbs->reply_sync;
|
||||||
break;
|
break;
|
||||||
|
#endif
|
||||||
|
|
||||||
case I3_IPC_EVENT_WORKSPACE:
|
case I3_IPC_EVENT_WORKSPACE:
|
||||||
pkt_handler = cbs->event_workspace;
|
pkt_handler = cbs->event_workspace;
|
||||||
|
|
Loading…
Add table
Reference in a new issue