diff options
Diffstat (limited to 'newlib/libc/include/sys')
-rw-r--r-- | newlib/libc/include/sys/reent.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/include/sys/reent.h b/newlib/libc/include/sys/reent.h index 53cc14281..7911b6cbc 100644 --- a/newlib/libc/include/sys/reent.h +++ b/newlib/libc/include/sys/reent.h @@ -158,9 +158,9 @@ struct __sFILE_fake { struct _reent *_data; }; /* CHECK_INIT() comes from stdio/local.h; be sure to include that. */ -# define _REENT_SMALL_CHECK_INIT(fp) CHECK_INIT(fp) +# define _REENT_SMALL_CHECK_INIT(ptr) CHECK_INIT(ptr) #else -# define _REENT_SMALL_CHECK_INIT(fp) /* nothing */ +# define _REENT_SMALL_CHECK_INIT(ptr) /* nothing */ #endif struct __sFILE { |