[colr] Fix compiler warning

This commit is contained in:
Behdad Esfahbod 2022-12-17 17:13:30 -07:00
parent 30a6fd04d0
commit 3b32eab38e
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ print (paint_data_t *data,
{
va_list args;
printf ("%*s", 2 * data->level, "");
printf ("%*s", INDENT * data->level, "");
va_start (args, format);
vprintf (format, args);