diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-11-05 11:35:17 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-11-06 11:32:36 +0100 |
commit | a299de37095af6933545ea7a5963b5d204235240 (patch) | |
tree | 453f89bca87e217fddbdbb0da2c4f982d48c5967 /nio.h | |
parent | 7c7c7084cd832041aff45d7235e3022a86872714 (diff) |
Fixed some SonarCloud complaints.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'nio.h')
-rw-r--r-- | nio.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -46,7 +46,7 @@ int nio_del_fd(struct nio * io, int fd); int nio_run(struct nio * io, int timeout); -static inline int nio_get_nready(struct nio * io) +static inline int nio_get_nready(struct nio const * const io) { return io->nready; } |