Fix printf

This commit is contained in:
atxr 2024-02-26 14:38:26 +01:00
parent 843449196d
commit b69ef84f98
3 changed files with 5 additions and 5 deletions

View file

@ -56,7 +56,7 @@ bool scan_decoded_files(zip zip)
// Verify CDH/LFH parsed sizes to avoid undefined behavior
if (lfh->filename_length != zip.cdh_filename_length[i])
{
printf("[ERROR] Mismatch in CDH/LFH filename lengths.\n");
fprintf(stderr, "[ERROR] Mismatch in CDH/LFH filename lengths.\n");
return true;
}