diff options
| author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-02-05 05:50:11 +0000 |
|---|---|---|
| committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-02-05 05:50:11 +0000 |
| commit | 306b3cfddaeafd14197c4e59ea42803f45f049be (patch) | |
| tree | 0528793bb2bc621a60a588fd294e4e5013f1ca30 /libc/sysdeps/linux/common/getdents64.c | |
| parent | 3135159411168fcface79912df7a836eb01b7e13 (diff) | |
| download | uClibc-alpine-306b3cfddaeafd14197c4e59ea42803f45f049be.tar.bz2 uClibc-alpine-306b3cfddaeafd14197c4e59ea42803f45f049be.tar.xz | |
Clean up warnings and cruft.
Diffstat (limited to 'libc/sysdeps/linux/common/getdents64.c')
| -rw-r--r-- | libc/sysdeps/linux/common/getdents64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/getdents64.c b/libc/sysdeps/linux/common/getdents64.c index f65e9e70b..6eb5418a0 100644 --- a/libc/sysdeps/linux/common/getdents64.c +++ b/libc/sysdeps/linux/common/getdents64.c @@ -66,7 +66,7 @@ ssize_t attribute_hidden __getdents64 (int fd, char *buf, size_t nbytes) dp = (struct dirent64 *) buf; skdp = kdp = alloca (red_nbytes); - retval = __syscall_getdents64(fd, (char *)kdp, red_nbytes); + retval = __syscall_getdents64(fd, (unsigned char *)kdp, red_nbytes); if (retval == -1) return -1; |
