diff options
Diffstat (limited to 'newlib/libc/stdio/fgetc.c')
-rw-r--r-- | newlib/libc/stdio/fgetc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdio/fgetc.c b/newlib/libc/stdio/fgetc.c index 1802acf..e275cfe 100644 --- a/newlib/libc/stdio/fgetc.c +++ b/newlib/libc/stdio/fgetc.c @@ -77,7 +77,7 @@ _DEFUN(_fgetc_r, (ptr, fp), FILE * fp) { int result; - CHECK_INIT(ptr); + CHECK_INIT(ptr, fp); _flockfile (fp); result = __sgetc_r (ptr, fp); _funlockfile (fp); @@ -92,7 +92,7 @@ _DEFUN(fgetc, (fp), { #if !defined(PREFER_SIZE_OVER_SPEED) && !defined(__OPTIMIZE_SIZE__) int result; - CHECK_INIT(_REENT); + CHECK_INIT(_REENT, fp); _flockfile (fp); result = __sgetc_r (_REENT, fp); _funlockfile (fp); |