1
0
Fork 0

Cleanup: Converted tabs to spaces

This commit is contained in:
Philipp Schafft 2018-09-12 09:14:13 +00:00
parent 19b665ba5c
commit 6973fe2cac
1 changed files with 1 additions and 1 deletions

View File

@ -527,7 +527,7 @@ static void __vsnprintf(char *str, size_t size, const char *format, va_list ap)
snprintf(buf, sizeof(buf), "%lli", (long long int)va_arg(ap, long long int));
break;
case 'z':
/* We do not use 'z' type of snprintf() here as it is not safe to use on a few outdated platforms. */
/* We do not use 'z' type of snprintf() here as it is not safe to use on a few outdated platforms. */
if (*format == 'u')
snprintf(buf, sizeof(buf), "%llu", (unsigned long long int)va_arg(ap, size_t));
else