[hb-shape] Write trace output to stderr

This commit is contained in:
Behdad Esfahbod 2023-01-24 11:50:59 -07:00
parent 161d8f9d26
commit 279f13c187
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ struct shape_output_t : output_options_t<>
g_string_append_printf (gs, "trace: %s buffer: ", message);
format.serialize (buffer, font, serialize_format, serialize_flags, gs);
g_string_append_c (gs, '\n');
fprintf (out_fp, "%s", gs->str);
fprintf (stderr, "%s", gs->str);
}