summaryrefslogtreecommitdiff
path: root/stdio-common
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2005-12-20 10:50:52 +0000
committerJakub Jelinek <jakub@redhat.com>2005-12-20 10:50:52 +0000
commit7d0bcd10a7e3455697985522580267c8470cfcb9 (patch)
treee297bb71c9979eda34a12ca4f3ff1acf5194d886 /stdio-common
parent2c6cfe6853a30deb4af842aacc924fa298d0521a (diff)
Updated to fedora-glibc-20051220T1028
Diffstat (limited to 'stdio-common')
-rw-r--r--stdio-common/renameat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/renameat.c b/stdio-common/renameat.c
index e8629098df..e09c5933ed 100644
--- a/stdio-common/renameat.c
+++ b/stdio-common/renameat.c
@@ -29,7 +29,7 @@ renameat (oldfd, old, newfd, new)
int newfd;
const char *new;
{
- if ((oldfd < 0 & oldfd !_ AT_FDCWD) || (newfd < 0 && newfd != AT_FDCWD))
+ if ((oldfd < 0 & oldfd != AT_FDCWD) || (newfd < 0 && newfd != AT_FDCWD))
{
__set_errno (EBADF);
return -1;