From fdffefb8032922ce7ffe4c00816072a8ff2148fc Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Fri, 17 Feb 2017 22:30:53 +0000 Subject: More types changes New disize Add size_t to the autotypes list Delete redundant and replace-libc files dev_t/ino_t pass Big size_t pass More things missing, still not operational yet --- src/libunixonacid/open2_at.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/libunixonacid/open2_at.c') diff --git a/src/libunixonacid/open2_at.c b/src/libunixonacid/open2_at.c index 4deb837..625ec20 100644 --- a/src/libunixonacid/open2_at.c +++ b/src/libunixonacid/open2_at.c @@ -33,7 +33,7 @@ int open2_at (int dirfd, char const *file, int flags) if (fdhere < 0) return -1 ; if (fd_chdir(dirfd) < 0) { - register int e = errno ; + int e = errno ; fd_close(fdhere) ; errno = e ; return -1 ; @@ -41,7 +41,7 @@ int open2_at (int dirfd, char const *file, int flags) fd = open2(file, flags) ; if (fd < 0) { - register int e = errno ; + int e = errno ; fd_chdir(fdhere) ; fd_close(fdhere) ; errno = e ; @@ -49,7 +49,7 @@ int open2_at (int dirfd, char const *file, int flags) } if (fd_chdir(fdhere) < 0) { - register int e = errno ; + int e = errno ; fd_close(fdhere) ; errno = e ; return -1 ; -- cgit v1.3.1