diff options
Diffstat (limited to 'libc/bionic/fchmod.cpp')
-rw-r--r-- | libc/bionic/fchmod.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/bionic/fchmod.cpp b/libc/bionic/fchmod.cpp index a486aaed1..0326fc2a2 100644 --- a/libc/bionic/fchmod.cpp +++ b/libc/bionic/fchmod.cpp @@ -35,11 +35,11 @@ #include "private/FdPath.h" -extern "C" int ___fchmod(int, mode_t); +extern "C" int __fchmod(int, mode_t); int fchmod(int fd, mode_t mode) { int saved_errno = errno; - int result = ___fchmod(fd, mode); + int result = __fchmod(fd, mode); if (result == 0 || errno != EBADF) { return result; } |