Skip to content

Commit

Permalink
fix fucking nbsp
Browse files Browse the repository at this point in the history
  • Loading branch information
v-atamanenko committed Oct 23, 2021
1 parent a47a471 commit ba7a92d
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 @@ -237,7 +237,7 @@ _open_r(struct _reent *reent, const char *file, int flags, int mode)

ret = sceIoOpen(file, flags, 0666);

if (ret & SCE_ERRNO_MASK == EISDIR) {
if (ret & SCE_ERRNO_MASK == EISDIR) {
isdir = 1;
ret = sceIoDopen(file);
}
Expand Down

0 comments on commit ba7a92d

Please sign in to comment.