diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-10-25 18:26:28 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-10-25 18:26:31 +0200 |
commit | 4d47a6cefe3c5ac022aa2e91033065a2354f4d19 (patch) | |
tree | ddc1f9778113d0bc1395bf321e8a685dc368d439 /v2/chatty.c | |
parent | f56da4808343aafd2c8b76f6691dec33c16dd80c (diff) |
Documentation & chore
Includes:
- increase the limit
- update with sources
- remove arena include in send.c
Diffstat (limited to 'v2/chatty.c')
-rw-r--r-- | v2/chatty.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/v2/chatty.c b/v2/chatty.c index 5697bcd..ddaae5c 100644 --- a/v2/chatty.c +++ b/v2/chatty.c @@ -428,8 +428,9 @@ int main(int argc, char **argv) } if (quit) break; + } - } else if (fds[FDS_RESIZE].revents & POLLIN) { + if (fds[FDS_RESIZE].revents & POLLIN) { tb_poll_event(&ev); } |