aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/plugin-manager/plugin-manager.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2008-11-01 05:04:30 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-11-01 05:04:30 +0800
commitec1f102019aaa451427228c4003866eee90276f0 (patch)
treea694c2a0cd58e721fcf00336160880f74a9d661a /plugins/plugin-manager/plugin-manager.c
parente4d1b4403780f992291a33b5621e953d3e50455d (diff)
downloadgsoc2013-evolution-ec1f102019aaa451427228c4003866eee90276f0.tar
gsoc2013-evolution-ec1f102019aaa451427228c4003866eee90276f0.tar.gz
gsoc2013-evolution-ec1f102019aaa451427228c4003866eee90276f0.tar.bz2
gsoc2013-evolution-ec1f102019aaa451427228c4003866eee90276f0.tar.lz
gsoc2013-evolution-ec1f102019aaa451427228c4003866eee90276f0.tar.xz
gsoc2013-evolution-ec1f102019aaa451427228c4003866eee90276f0.tar.zst
gsoc2013-evolution-ec1f102019aaa451427228c4003866eee90276f0.zip
** Fixes bug #558726 (patch by Frederic van Starbmann)
2008-10-31 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #558726 (patch by Frederic van Starbmann) * mail/em-format-html.c (emfh_multipart_related_check): * plugins/mail-to-task/mail-to-task.c (do_mail_to_task): * plugins/plugin-manager/plugin-manager.c (eppm_enable_toggled): Fix several potential format string crashes. svn path=/trunk/; revision=36709
Diffstat (limited to 'plugins/plugin-manager/plugin-manager.c')
-rw-r--r--plugins/plugin-manager/plugin-manager.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/plugin-manager/plugin-manager.c b/plugins/plugin-manager/plugin-manager.c
index 4658291679..19af3eeb7e 100644
--- a/plugins/plugin-manager/plugin-manager.c
+++ b/plugins/plugin-manager/plugin-manager.c
@@ -196,7 +196,7 @@ eppm_enable_toggled (GtkCellRendererToggle *renderer, const char *path_string, M
gtk_tree_model_get (m->model, &iter, COL_PLUGIN_DATA, &plugin, -1);
e_plugin_enable (plugin, !plugin->enabled);
- g_warning (plugin->name);
+ g_warning ("%s", plugin->name);
gtk_list_store_set (GTK_LIST_STORE(m->model), &iter,
COL_PLUGIN_ENABLED, plugin->enabled,