diff options
Diffstat (limited to 'sysdeps/unix/closedir.c')
-rw-r--r-- | sysdeps/unix/closedir.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/unix/closedir.c b/sysdeps/unix/closedir.c index 6acbb62e87..5f1ac7439a 100644 --- a/sysdeps/unix/closedir.c +++ b/sysdeps/unix/closedir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1993, 1995, 1996 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1993, 1995 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -37,9 +37,9 @@ DEFUN(closedir, (dirp), DIR *dirp) return -1; } - fd = dirp->fd; + fd = dirp->__fd; - free ((PTR) dirp->data); + free ((PTR) dirp->__data); free ((PTR) dirp); return __close (fd); |