mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 13:45:00 +00:00
Merge pull request #986 from libexpat/address-frama-c-warning
Address Frama-C warning
This commit is contained in:
commit
ec81c552a1
2 changed files with 2 additions and 1 deletions
expat
|
@ -42,6 +42,7 @@ Release 2.7.1 ??? ????? ?? ????
|
|||
#976 #977 Autotools: Integrate files "fuzz/xml_lpm_fuzzer.{cpp,proto}"
|
||||
with Automake that were missing from 2.7.0 release tarballs
|
||||
#983 #984 Fix printf format specifiers for 32bit Emscripten
|
||||
#986 Address compiler warnings
|
||||
|
||||
Infrastructure:
|
||||
#981 CI: Cover compilation with musl
|
||||
|
|
|
@ -8245,7 +8245,7 @@ entityTrackingReportStats(XML_Parser rootParser, ENTITY *entity,
|
|||
(void *)rootParser, rootParser->m_entity_stats.countEverOpened,
|
||||
rootParser->m_entity_stats.currentDepth,
|
||||
rootParser->m_entity_stats.maximumDepthSeen,
|
||||
(rootParser->m_entity_stats.currentDepth - 1) * 2, "",
|
||||
((int)rootParser->m_entity_stats.currentDepth - 1) * 2, "",
|
||||
entity->is_param ? "%" : "&", entityName, action, entity->textLen,
|
||||
sourceLine);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue