sscanf
sscanf copied to clipboard
properly escape % symbol in warning message
Before the warning message, when % character is used as prefix for specifier, was displayed like this:
sscanf specifiers do not require '' before them.
instead of
sscanf specifiers do not require '%' before them.
This PR escapes % symbol in those strings.