diff options
author | Yaakov Selkowitz <yselkowi@redhat.com> | 2017-12-03 20:56:37 -0600 |
---|---|---|
committer | Yaakov Selkowitz <yselkowi@redhat.com> | 2018-01-17 11:47:17 -0600 |
commit | 670b01da7f04f785df5bed9cd8e22076aa6166d5 (patch) | |
tree | b8aaf51776e0a37aa03af1becae5c9f2c50c8d55 /newlib/libc/stdio64 | |
parent | e6321aa6a668376c40bc2792a3bd392e94c29ad6 (diff) | |
download | newlib-670b01da7f04f785df5bed9cd8e22076aa6166d5.zip newlib-670b01da7f04f785df5bed9cd8e22076aa6166d5.tar.gz newlib-670b01da7f04f785df5bed9cd8e22076aa6166d5.tar.bz2 |
ansification: remove _CAST_VOID
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'newlib/libc/stdio64')
-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; } |