Skip to content

Commit

Permalink
Mobidoc::ParseHeader: ReportIf() => ReportDebugIf()
Browse files Browse the repository at this point in the history
  • Loading branch information
kjk committed Sep 1, 2024
1 parent e21ddac commit 22eb23c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MobiDoc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ bool MobiDoc::ParseHeader() {
size_t cdicsCount = mobiHdr.huffmanRecCount - 1;
if (cdicsCount > kCdicsMax) {
logf("MobiDoc::ParseHeader: cdicsCount: %d, kCdicsMax: %d\n", cdicsCount, kCdicsMax);
ReportIf(true);
ReportDebugIf(true);
return false;
}
for (size_t i = 0; i < cdicsCount; i++) {
Expand Down

0 comments on commit 22eb23c

Please sign in to comment.