diff options
Diffstat (limited to 'src/basic/io-util.c')
-rw-r--r-- | src/basic/io-util.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/basic/io-util.c b/src/basic/io-util.c index 6f6fb8068c..bf1aab9e38 100644 --- a/src/basic/io-util.c +++ b/src/basic/io-util.c @@ -54,8 +54,7 @@ ssize_t loop_read(int fd, void *buf, size_t nbytes, bool do_poll) { assert(fd >= 0); - /* If called with nbytes == 0, let's call read() at least - * once, to validate the operation */ + /* If called with nbytes == 0, let's call read() at least once, to validate the operation */ if (nbytes > (size_t) SSIZE_MAX) return -EINVAL; |