Correct a thinko

The xml way of saying %s is %s, not &s.
This commit is contained in:
Matthias Clasen
2009-07-30 09:07:37 -04:00
parent 2d79405118
commit d75ccb5c0d

View File

@ -50,7 +50,7 @@ GError* error = NULL;
GtkBuilder* builder = gtk_builder_new (<!-- -->);
if (!gtk_builder_add_from_file (builder, FILE, &amp;error))
{
g_warning ("Couldn't load builder file: &amp;s", error->message);
g_warning ("Couldn't load builder file: &percnt;s", error->message);
g_error_free (error);
}
</screen>