From 441aa3044f43e5572f58c354f01e6bc070acd5c7 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Thu, 10 Dec 2009 20:28:30 +0100 Subject: Use spaces for indentation, not tabs. --- lib/fstatat.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib/fstatat.c') diff --git a/lib/fstatat.c b/lib/fstatat.c index 1c6c2d30b7..d58e60b8a4 100644 --- a/lib/fstatat.c +++ b/lib/fstatat.c @@ -48,12 +48,12 @@ rpl_fstatat (int fd, char const *file, struct stat *st, int flag) { /* Fix lstat behavior. */ if (file[len - 1] != '/' || S_ISDIR (st->st_mode)) - return 0; + return 0; if (!S_ISLNK (st->st_mode)) - { - errno = ENOTDIR; - return -1; - } + { + errno = ENOTDIR; + return -1; + } result = fstatat (fd, file, st, flag & ~AT_SYMLINK_NOFOLLOW); } /* Fix stat behavior. */ -- cgit v1.2.1