summaryrefslogtreecommitdiff
path: root/src/stdio/fflush.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/fflush.c')
-rw-r--r--src/stdio/fflush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdio/fflush.c b/src/stdio/fflush.c
index 9030a39f..1b70d8b0 100644
--- a/src/stdio/fflush.c
+++ b/src/stdio/fflush.c
@@ -7,7 +7,7 @@ int fflush(FILE *stream)
flockfile(stream);
if (stream == NULL) {
FILE *p;
- for (p = __libc(FILE_STREAMS); p != NULL; p = p->prev) {
+ for (p = __stdio.FILES; p != NULL; p = p->prev) {
fflush(p);
}
}