plug-ins: Use string literal as format in metadata plug-in

This commit is contained in:
Martin Nordholts
2009-07-14 11:49:54 +02:00
parent 7976f21a35
commit c6798bc247

View File

@ -427,7 +427,7 @@ metadata_message_dialog (GtkMessageType type,
{
GtkWidget *dlg;
dlg = gtk_message_dialog_new (parent, 0, type, GTK_BUTTONS_OK, message);
dlg = gtk_message_dialog_new (parent, 0, type, GTK_BUTTONS_OK, "%s", message);
if (title)
gtk_window_set_title (GTK_WINDOW (dlg), title);