diff options
author | David Malcolm <dave_malcolm@src.gnome.org> | 2005-08-06 00:27:27 +0800 |
---|---|---|
committer | David Malcolm <dave_malcolm@src.gnome.org> | 2005-08-06 00:27:27 +0800 |
commit | 10b57ff8f8716e5393e24d73dc916b33083120e5 (patch) | |
tree | 307ed2c690c912c468a224f8f61b38e3ac47a3cb /mail/em-account-editor.c | |
parent | 03de673d63f41897a8e5007f9ee3f71925346789 (diff) | |
download | gsoc2013-evolution-10b57ff8f8716e5393e24d73dc916b33083120e5.tar.gz gsoc2013-evolution-10b57ff8f8716e5393e24d73dc916b33083120e5.tar.zst gsoc2013-evolution-10b57ff8f8716e5393e24d73dc916b33083120e5.zip |
(emae_option_checkspin) initialize local variable "label".
svn path=/trunk/; revision=30008
Diffstat (limited to 'mail/em-account-editor.c')
-rw-r--r-- | mail/em-account-editor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c index ee2a5a75d6..70936abf97 100644 --- a/mail/em-account-editor.c +++ b/mail/em-account-editor.c @@ -1872,7 +1872,7 @@ emae_option_checkspin_check_changed(GtkToggleButton *toggle, EMAccountEditorServ static GtkWidget * emae_option_checkspin(EMAccountEditorService *service, CamelURL *url, const char *name, const char *fmt, const char *info) { - GtkWidget *hbox, *check, *spin, *label; + GtkWidget *hbox, *check, *spin, *label = NULL; double min, def, max; char *pre, *post; const char *val; |