1
0
mirror of https://gitlab.xiph.org/xiph/icecast-common.git synced 2024-06-16 06:15:24 +00:00

Cleanup: Converted tabs to spaces

This commit is contained in:
Philipp Schafft 2018-09-12 09:14:13 +00:00
parent 19b665ba5c
commit 6973fe2cac

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