🔧 修正一些表达

This commit is contained in:
fslongjin
2022-01-26 22:26:24 +08:00
parent ba7f1bb4ea
commit ae52d9c2d2
3 changed files with 24 additions and 24 deletions

View File

@ -315,7 +315,7 @@ static int vsprintf(char *buf, const char *fmt, va_list args)
case 'x':
flags |= SMALL;
case 'X':
flags |= SPECIAL;
//flags |= SPECIAL;
if (qualifier == 'l')
str = write_num(str, va_arg(args, long long), 16, field_width, precision, flags);
else