GtkTextBufferSerialize: Add missing format string argument

The format string has two string parameters however only one was supplied.
This commit is contained in:
Felix Riemann 2019-04-27 14:41:48 +02:00
parent 0dcbbc3344
commit 370d8242e7

View File

@ -841,7 +841,8 @@ check_id_or_name (GMarkupParseContext *context,
{
set_error (error, context,
G_MARKUP_ERROR, G_MARKUP_ERROR_PARSE,
_("<%s> element has invalid ID \"%s\""), attribute_values[i]);
_("<%s> element has invalid ID \"%s\""),
element_name, attribute_values[i]);
return FALSE;
}
}