diff options
Diffstat (limited to 'newlib/libc/stdio64/tmpfile64.c')
-rw-r--r-- | newlib/libc/stdio64/tmpfile64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdio64/tmpfile64.c b/newlib/libc/stdio64/tmpfile64.c index d58aa14..58b945d 100644 --- a/newlib/libc/stdio64/tmpfile64.c +++ b/newlib/libc/stdio64/tmpfile64.c @@ -76,7 +76,7 @@ _DEFUN (_tmpfile64_r, (ptr), e = ptr->_errno; if (!fp) _close_r (ptr, fd); - _CAST_VOID _remove_r (ptr, f); + (void) _remove_r (ptr, f); ptr->_errno = e; return fp; } |