diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-08-07 18:49:14 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-08-07 18:50:05 +0800 |
commit | 65695ae516532a4b6e129a0703b1056a3996de0c (patch) | |
tree | fba1a9370eceddd151f2631803aa857eda3d38ac | |
parent | 35fadc2d399c6b647b48fbe6ecab4259dffc11f3 (diff) | |
download | gsoc2013-evolution-65695ae516532a4b6e129a0703b1056a3996de0c.tar.gz gsoc2013-evolution-65695ae516532a4b6e129a0703b1056a3996de0c.tar.zst gsoc2013-evolution-65695ae516532a4b6e129a0703b1056a3996de0c.zip |
Fix a boo boo I made in the autosave code.
-rw-r--r-- | composer/e-composer-autosave.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/composer/e-composer-autosave.c b/composer/e-composer-autosave.c index 2e288652e0..908ff8cf83 100644 --- a/composer/e-composer-autosave.c +++ b/composer/e-composer-autosave.c @@ -95,7 +95,8 @@ composer_autosave_state_open (AutosaveState *state) if (state->file != NULL) return TRUE; - path = g_build_filename (e_get_user_data_dir (), AUTOSAVE_SEED); + path = g_build_filename ( + e_get_user_data_dir (), AUTOSAVE_SEED, NULL); /* Since GIO doesn't have support for creating temporary files * from a template (and in a given directory), we have to use |