diff options
Diffstat (limited to 'newlib/libc/machine/spu/ftell.c')
-rw-r--r-- | newlib/libc/machine/spu/ftell.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/newlib/libc/machine/spu/ftell.c b/newlib/libc/machine/spu/ftell.c index 66df46269..4782e5ea3 100644 --- a/newlib/libc/machine/spu/ftell.c +++ b/newlib/libc/machine/spu/ftell.c @@ -47,8 +47,6 @@ _DEFUN (ftell, (fp), ret = fp->_fp; - __send_to_ppe(SPE_C99_SIGNALCODE, SPE_C99_FTELL, &ret); - - return ret; + return __send_to_ppe(SPE_C99_SIGNALCODE, SPE_C99_FTELL, &ret); } #endif /* ! _REENT_ONLY */ |