mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-09 13:41:45 +00:00
Don't forget to take results
This commit is contained in:
parent
6934e1422f
commit
a8e86c2de3
1 changed files with 2 additions and 2 deletions
|
@ -32,12 +32,12 @@ int fsact_copy(const char *locin, const char *locout, u8 options){
|
|||
return 1;
|
||||
}
|
||||
|
||||
if (f_stat(locin, &in_info)){
|
||||
if ((res = f_stat(locin, &in_info))){
|
||||
gfx_errDisplay("copy", res, 3);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (f_open(&out, locout, FA_CREATE_ALWAYS | FA_WRITE)){
|
||||
if ((res = f_open(&out, locout, FA_CREATE_ALWAYS | FA_WRITE))){
|
||||
gfx_errDisplay("copy", res, 4);
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue