diff options
Diffstat (limited to 'libc/sysdeps/linux/common/getdents.c')
-rw-r--r-- | libc/sysdeps/linux/common/getdents.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/getdents.c b/libc/sysdeps/linux/common/getdents.c index a04c41d30..7fe191d77 100644 --- a/libc/sysdeps/linux/common/getdents.c +++ b/libc/sysdeps/linux/common/getdents.c @@ -63,7 +63,7 @@ ssize_t __getdents (int fd, char *buf, size_t nbytes) dp = (struct dirent *) buf; skdp = kdp = alloca (red_nbytes); - retval = __syscall_getdents(fd, (char *)kdp, red_nbytes); + retval = __syscall_getdents(fd, (unsigned char *)kdp, red_nbytes); if (retval == -1) return -1; |