diff options
| author | 2026-07-02 17:48:49 -0400 | |
|---|---|---|
| committer | 2026-07-02 17:48:49 -0400 | |
| commit | 14e6bb6e6b9cc2a0c0f6b5fb80144a0f9c7c82d6 (patch) | |
| tree | a762ef0f687a828cb4c13c868cd3d5a7ca013d32 /src/poll_common.h | |
| parent | d7ed3f8a7b0e5e1b4c4f648e1f12579d7273eaad (diff) | |
| download | stela-14e6bb6e6b9cc2a0c0f6b5fb80144a0f9c7c82d6.tar.gz stela-14e6bb6e6b9cc2a0c0f6b5fb80144a0f9c7c82d6.tar.bz2 stela-14e6bb6e6b9cc2a0c0f6b5fb80144a0f9c7c82d6.zip | |
Remove return value from window->poll()
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'src/poll_common.h')
| -rw-r--r-- | src/poll_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/poll_common.h b/src/poll_common.h index 597fa73..3c37d1b 100644 --- a/src/poll_common.h +++ b/src/poll_common.h @@ -5,7 +5,7 @@ #include "window.h" #ifdef STELA_POLL_INLINE -bool stl_poll_common(struct stl_window *window, struct nn_pollfd *fds, bool block); +void stl_poll_common(struct nn_pollfd *fds, bool block); #ifdef STELA_PAUSE void stl_wake_common(struct nn_pollfd *fds); #endif |