diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-11-06 23:49:51 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-11-07 00:02:36 +0100 |
commit | 5d56288a113aa3aa2e68dbf54f0acde0650bafcb (patch) | |
tree | bc4e9904feac2a8c9e5f5287774416b1aa3822f9 /nio.c | |
parent | 84b12cd02c1f11d134f00b0a066414a677a53719 (diff) |
Fixed more SonarCloud complaints.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'nio.c')
-rw-r--r-- | nio.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -329,7 +329,7 @@ int nio_check(struct nio * io, int index, int event_flags) return NIO_ERROR_INTERNAL; } -int nio_is_valid(struct nio * io, int index) +int nio_is_valid(struct nio const * const io, int index) { if (index < 0 || index >= io->nready) return NIO_ERROR_INTERNAL; |