diff options
author | Milan Crha <mcrha@redhat.com> | 2009-07-28 02:55:30 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-08-11 07:31:44 +0800 |
commit | cdd06c393d2c6dd0b5716a354aecc92c8457dc4d (patch) | |
tree | d46a3dd43d651e297b8e273388ae9fea63d88270 /plugins | |
parent | 741d49c900ecc01002513060826b43dc26d4e55d (diff) | |
download | gsoc2013-evolution-cdd06c393d2c6dd0b5716a354aecc92c8457dc4d.tar.gz gsoc2013-evolution-cdd06c393d2c6dd0b5716a354aecc92c8457dc4d.tar.zst gsoc2013-evolution-cdd06c393d2c6dd0b5716a354aecc92c8457dc4d.zip |
Compiler warning fixes (as part of bug #424078)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/publish-calendar/url-editor-dialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/publish-calendar/url-editor-dialog.c b/plugins/publish-calendar/url-editor-dialog.c index ee1f33932d..c4fad2aba9 100644 --- a/plugins/publish-calendar/url-editor-dialog.c +++ b/plugins/publish-calendar/url-editor-dialog.c @@ -42,7 +42,7 @@ create_uri (UrlEditorDialog *dialog) g_free (uri->location); uri->location = g_strdup (gtk_entry_get_text (GTK_ENTRY (dialog->server_entry))); } else { - const gchar *method; + const gchar *method = "file"; gchar *server, *file, *port, *username, *password; server = g_strdup (gtk_entry_get_text (GTK_ENTRY (dialog->server_entry))); |