Redundant format item encountered.
#2532 Compile-time warning
Redundant format item encountered.
Additional Information
The 'G' format item is not required when it appears alone in a string.
The 'X' format item is not required when it appears alone in a string.
Recovery
Consider replacing "%g(var)" by var.
Explanation
The format strings "%g(s)"
and "%x(s)"
are is equivalent to s
.