diff options
Diffstat (limited to 'newlib/libc/machine/spu/putchar.c')
-rw-r--r-- | newlib/libc/machine/spu/putchar.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/newlib/libc/machine/spu/putchar.c b/newlib/libc/machine/spu/putchar.c index 5cf9ed40a..67eb59976 100644 --- a/newlib/libc/machine/spu/putchar.c +++ b/newlib/libc/machine/spu/putchar.c @@ -14,9 +14,7 @@ putchar (c) /* c gets overwritten before return */ - __send_to_ppe(SPE_C99_SIGNALCODE, SPE_C99_PUTCHAR, &c); - - return c; + return __send_to_ppe(SPE_C99_SIGNALCODE, SPE_C99_PUTCHAR, &c); } #endif /* ! _REENT_ONLY */ |