[util] Change "All shapers failed." message to "Shaping failed."

Since we now emit this when verification fails as well.
This commit is contained in:
Behdad Esfahbod 2022-01-29 09:08:20 -07:00
parent 3972e0a8f1
commit d35f380126
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ struct shape_options_t
if (!hb_shape_full (font, buffer, features, num_features, shapers))
{
if (error)
*error = "All shapers failed.";
*error = "Shaping failed.";
goto fail;
}