diff options
author | Xavier Claessens <xavier.claessens@collabora.co.uk> | 2012-07-16 20:18:47 +0800 |
---|---|---|
committer | Xavier Claessens <xavier.claessens@collabora.co.uk> | 2012-07-16 20:18:47 +0800 |
commit | 17466e4859d78642ba7f8319a4875cc29c4ca0ba (patch) | |
tree | c245b27453a36fea987eab2439a5334ba849e0fb | |
parent | 0751b2d498a4fedde128f9a55bcb89d859794ee3 (diff) | |
download | gsoc2013-empathy-17466e4859d78642ba7f8319a4875cc29c4ca0ba.tar.gz gsoc2013-empathy-17466e4859d78642ba7f8319a4875cc29c4ca0ba.tar.zst gsoc2013-empathy-17466e4859d78642ba7f8319a4875cc29c4ca0ba.zip |
Fix build warning: A string format is required
-rw-r--r-- | libempathy-gtk/empathy-subscription-dialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-subscription-dialog.c b/libempathy-gtk/empathy-subscription-dialog.c index 10a59b5a8..04fae6d18 100644 --- a/libempathy-gtk/empathy-subscription-dialog.c +++ b/libempathy-gtk/empathy-subscription-dialog.c @@ -247,7 +247,7 @@ empathy_subscription_dialog_constructed (GObject *object) { tmp = g_strdup_printf ("<i>%s</i>", self->priv->message); gtk_message_dialog_format_secondary_markup (GTK_MESSAGE_DIALOG (self), - tmp); + "%s", tmp); g_free (tmp); } |