From 67f875004f7247384e0f7c5c458b4f69603eeb2a Mon Sep 17 00:00:00 2001 From: Glenn Anderson Date: Sun, 6 Sep 2015 12:46:48 -0400 Subject: [PATCH] Renames uvl_write to uvl_log_write. --- newlib/libc/sys/vita/syscalls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newlib/libc/sys/vita/syscalls.c b/newlib/libc/sys/vita/syscalls.c index c2a2e10478..e9b8ade610 100755 --- a/newlib/libc/sys/vita/syscalls.c +++ b/newlib/libc/sys/vita/syscalls.c @@ -21,7 +21,7 @@ _write_r(struct _reent * reent, int fd, const void *buf, size_t nbytes) return -1; } if (fd == STDIN_FILENO || fd == STDOUT_FILENO || fd == STDERR_FILENO) { - ret = uvl_write(fd, buf, nbytes); + ret = uvl_log_write(buf, nbytes); if (ret < 0) { reent->_errno = ret & SCE_ERRNO_MASK; return -1;