summaryrefslogtreecommitdiff
path: root/apps/fileop.c
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2024-07-04 13:01:36 -0400
committerWilliam Wilgus <wilgus.william@gmail.com>2024-07-04 13:01:36 -0400
commite4ee8c8879457efafd4e073e70de4b9a8a6ef888 (patch)
tree921831e99280c1e1ad5078ae25e96545f6a30a93 /apps/fileop.c
parentb0dfcde2f5fb086e7a7f54b16a47e0433661cca7 (diff)
downloadrockbox-master.tar.gz
rockbox-master.zip
[Fix Yellow] file_op.c Bad DEBUGF statementHEADmaster
Change-Id: I22fa470599b0c22fae0bc5492eda38fd1e0c0b55
Diffstat (limited to 'apps/fileop.c')
-rw-r--r--apps/fileop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/fileop.c b/apps/fileop.c
index c4bdc5aa18..35bd9f2241 100644
--- a/apps/fileop.c
+++ b/apps/fileop.c
@@ -503,7 +503,7 @@ int copy_move_fileobject(const char *src_path, const char *dst_path, unsigned in
503 } 503 }
504 504
505 /* Else Some other relation / failure */ 505 /* Else Some other relation / failure */
506 DEBUGF("%s res: %d, rel: %d\n", __func__, rc, rel); 506 DEBUGF("%s res: %d, rel: %d\n", __func__, FORC_UNKNOWN_FAILURE, rel);
507 return FORC_UNKNOWN_FAILURE; 507 return FORC_UNKNOWN_FAILURE;
508} 508}
509 509