Skip to content

Commit

Permalink
fix compare (and with that lib move)
Browse files Browse the repository at this point in the history
  • Loading branch information
SciLor committed Mar 30, 2024
1 parent cf51c89 commit fe7c91d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fs_ext.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ error_t fsCompareFiles(const char_t *source_path, const char_t *target_path, siz
{
break;
}
error = fsReadFile(source_file, buffer_source, sizeof(buffer_source), &bytes_read_source);
error = fsReadFile(target_file, buffer_target, sizeof(buffer_target), &bytes_read_target);
if (error != NO_ERROR && error != ERROR_END_OF_FILE)
{
break;
Expand Down

0 comments on commit fe7c91d

Please sign in to comment.