diff options
Diffstat (limited to 'libbb/read.c')
-rw-r--r-- | libbb/read.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/read.c b/libbb/read.c index 50e0354..861828d 100644 --- a/libbb/read.c +++ b/libbb/read.c @@ -88,7 +88,7 @@ char *reads(int fd, char *buffer, size_t size) *p++ = '\0'; // avoid incorrect (unsigned) widening offset = (off_t)(p-buffer) - (off_t)size; - // set fd position the right after the \n + // set fd position right after '\n' if (offset && lseek(fd, offset, SEEK_CUR) == (off_t)-1) return NULL; } |