Added pointer specifiers.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@13401 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2020-03-08 08:55:12 +00:00
parent 8a5c02b6d6
commit 8f040bb81c
1 changed files with 2 additions and 0 deletions

View File

@ -283,6 +283,8 @@ int chvprintf(BaseSequentialStream *chp, const char *fmt, va_list ap) {
#endif
case 'X':
case 'x':
case 'P':
case 'p':
c = 16;
goto unsigned_common;
case 'U':