summaryrefslogtreecommitdiffstats
path: root/lib/libc_r/uthread/uthread_write.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc_r/uthread/uthread_write.c')
-rw-r--r--lib/libc_r/uthread/uthread_write.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc_r/uthread/uthread_write.c b/lib/libc_r/uthread/uthread_write.c
index 573e78e..0b1e4a0 100644
--- a/lib/libc_r/uthread/uthread_write.c
+++ b/lib/libc_r/uthread/uthread_write.c
@@ -78,7 +78,8 @@ _write(int fd, const void *buf, size_t nbytes)
*/
while (ret == 0) {
/* Perform a non-blocking write syscall: */
- n = __sys_write(fd, buf + num, nbytes - num);
+ n = __sys_write(fd, (const char *)buf + num,
+ nbytes - num);
/* Check if one or more bytes were written: */
if (n > 0)
OpenPOWER on IntegriCloud