Skip to content

Commit

Permalink
Fix permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
xyzz committed Jul 24, 2016
1 parent 8cb9ce7 commit 0b71f1a
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 @@ -157,7 +157,7 @@ _open_r(struct _reent *reent, const char *file, int flags, int mode)
{
int ret, i, found = 0;
flags = _fcntl2sony(flags);
ret = sceIoOpen(file, flags, 0600);
ret = sceIoOpen(file, flags, 0666);
if (ret < 0) {
reent->_errno = ret & SCE_ERRNO_MASK;
return -1;
Expand Down

0 comments on commit 0b71f1a

Please sign in to comment.