diff options
author | 2015-01-07 16:26:26 -0200 | |
---|---|---|
committer | 2015-01-07 16:26:26 -0200 | |
commit | 882dfe184a81a8924bc8acb79e96fbf7556fa60b (patch) | |
tree | 898db204ff5788b2ca94c8f5f73c43181e850e97 /sysdeps/unix/sysv/linux | |
parent | posix/regcomp: initialize union structure tag to avoid warning (diff) | |
download | glibc-882dfe184a81a8924bc8acb79e96fbf7556fa60b.tar.xz glibc-882dfe184a81a8924bc8acb79e96fbf7556fa60b.zip |
mips: Fix __libc_pread prototype
This patch fixes the __libc_pread prototype change from
14bb4e57c094849228ad8524693ab9432c38396c.
Diffstat (limited to 'sysdeps/unix/sysv/linux')
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/pread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/mips/pread.c b/sysdeps/unix/sysv/linux/mips/pread.c index c301067478..a7b1618968 100644 --- a/sysdeps/unix/sysv/linux/mips/pread.c +++ b/sysdeps/unix/sysv/linux/mips/pread.c @@ -36,7 +36,7 @@ ssize_t -__libc_pread (int fd, void *buf, size_t count, off_t offset): +__libc_pread (int fd, void *buf, size_t count, off_t offset) { ssize_t result; |