Skip to content

Commit

Permalink
Fixed compiling error.
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOfficialFloW committed Sep 12, 2016
1 parent 90a2e5f commit a82bd91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion archive.c
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ int extractArchivePath(char *src, char *dst, FileProcessParam *param) {

int written = sceIoWrite(fddst, buf, read);
if (written == SCE_ERROR_ERRNO_ENODEV) {
fddst = sceIoOpen(dst_path, SCE_O_WRONLY | SCE_O_CREAT, 0777);
fddst = sceIoOpen(dst, SCE_O_WRONLY | SCE_O_CREAT, 0777);
if (fddst >= 0) {
sceIoLseek(fddst, seek, SCE_SEEK_SET);
written = sceIoWrite(fddst, buf, read);
Expand Down

0 comments on commit a82bd91

Please sign in to comment.