diff options
author | Gotz Waschk <waschk@mandriva.org> | 2010-02-24 12:50:19 +0000 |
---|---|---|
committer | Frederic Crozat <fcrozat@mandriva.com> | 2010-02-26 11:34:46 +0100 |
commit | 0dbb5afde31aa279c42429da03680794ec16cae7 (patch) | |
tree | 679d5ea0d1bfa2ec73df51caa7f3fd5d9812ca61 /gweather | |
parent | dbb52b1e615b08e88cc770a23c05f11364c016b5 (diff) |
Fix format security warning
https://bugzilla.gnome.org/show_bug.cgi?id=610950
Diffstat (limited to 'gweather')
-rw-r--r-- | gweather/gweather-applet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gweather/gweather-applet.c b/gweather/gweather-applet.c index 8d86ec015..09044ca09 100644 --- a/gweather/gweather-applet.c +++ b/gweather/gweather-applet.c @@ -471,7 +471,7 @@ update_finish (WeatherInfo *info, gpointer data) notify_notification_show (n, &error); if (error) { - g_warning (error->message); + g_warning ("%s", error->message); g_error_free (error); } |