diff options
author | William Wilgus <wilgus.william@gmail.com> | 2024-07-04 13:01:36 -0400 |
---|---|---|
committer | William Wilgus <wilgus.william@gmail.com> | 2024-07-04 13:01:36 -0400 |
commit | e4ee8c8879457efafd4e073e70de4b9a8a6ef888 (patch) | |
tree | 921831e99280c1e1ad5078ae25e96545f6a30a93 | |
parent | b0dfcde2f5fb086e7a7f54b16a47e0433661cca7 (diff) | |
download | rockbox-e4ee8c8879.tar.gz rockbox-e4ee8c8879.zip |
[Fix Yellow] file_op.c Bad DEBUGF statement
Change-Id: I22fa470599b0c22fae0bc5492eda38fd1e0c0b55
-rw-r--r-- | apps/fileop.c | 2 |
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 } /* Else Some other relation / failure */ - DEBUGF("%s res: %d, rel: %d\n", __func__, rc, rel); + DEBUGF("%s res: %d, rel: %d\n", __func__, FORC_UNKNOWN_FAILURE, rel); return FORC_UNKNOWN_FAILURE; } |