diff options
Diffstat (limited to 'libio/bits/stdio.h')
-rw-r--r-- | libio/bits/stdio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/bits/stdio.h b/libio/bits/stdio.h index 8a15c6e6a6..d698132558 100644 --- a/libio/bits/stdio.h +++ b/libio/bits/stdio.h @@ -144,7 +144,7 @@ ferror_unlocked (FILE *__stream) __THROW || (__builtin_constant_p (n) && (n) == 0)) \ /* Evaluate all parameters once. */ \ ? ((void) (ptr), (void) (stream), (void) (size), \ - (void) n, 0) \ + (void) (n), 0) \ : fread_unlocked (ptr, size, n, stream)))) # define fwrite_unlocked(ptr, size, n, stream) \ |