Skip to content

Commit

Permalink
Renames uvl_write to uvl_log_write.
Browse files Browse the repository at this point in the history
  • Loading branch information
Glenn Anderson authored and frangarcj committed Jul 22, 2021
1 parent 8a652ba commit 67f8750
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion newlib/libc/sys/vita/syscalls.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 67f8750

Please sign in to comment.