leethomason / tinyxml2

TinyXML2 is a simple, small, efficient, C++ XML parser that can be easily integrated into other programs.
zlib License
5.09k stars 1.83k forks source link

Fix format error of TIXML_SNPRINTF #970

Closed AlbertHungGarmin closed 6 months ago

AlbertHungGarmin commented 7 months ago

The format "%x" is treated as an unsigned int by the GCC compiler. Use static_cast to cast the error to an unsigned int to match the "%x" type. Additionally, replace int(error) with static_cast(error) to avoid the old-style cast warning.