mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-18 10:35:55 +00:00
Restore the support for the 'r' and the 'y' conversion specifiers, first
added on r208987. These are undocumented but are part of printf(9).
This commit is contained in:
parent
0c019d8c6e
commit
921f8a1b40
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=213681
@ -195,6 +195,8 @@ static PrintfSpecifierResult ParsePrintfSpecifier(FormatStringHandler &H,
|
||||
case 'm': k = ConversionSpecifier::PrintErrno; break;
|
||||
// FreeBSD format extensions
|
||||
case 'b': if (FormatExtensions) k = ConversionSpecifier::bArg; break; /* check for int and then char * */
|
||||
case 'r': if (FormatExtensions) k = ConversionSpecifier::xArg; break;
|
||||
case 'y': if (FormatExtensions) k = ConversionSpecifier::iArg; break;
|
||||
case 'D': if (FormatExtensions) k = ConversionSpecifier::DArg; break; /* check for u_char * pointer and a char * string */
|
||||
}
|
||||
PrintfConversionSpecifier CS(conversionPosition, k);
|
||||
|
Loading…
Reference in New Issue
Block a user