diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2012-06-19 23:51:41 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2012-06-19 23:51:41 +0800 |
commit | b724ca9d48af01d95ec0685a750075bfab0af7f5 (patch) | |
tree | a625c82632828ab8655eae02ff2db7dc4e06c640 | |
parent | 954a585925213659759af1a88a514d430e2ba643 (diff) | |
download | gsoc2013-evolution-b724ca9d48af01d95ec0685a750075bfab0af7f5.tar.gz gsoc2013-evolution-b724ca9d48af01d95ec0685a750075bfab0af7f5.tar.zst gsoc2013-evolution-b724ca9d48af01d95ec0685a750075bfab0af7f5.zip |
Adapt to CamelDataCache API change.
camel_data_cache_get_filename() dropped its unused GError parameter.
-rw-r--r-- | mail/e-http-request.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/e-http-request.c b/mail/e-http-request.c index 682b80626c..db3047e2f4 100644 --- a/mail/e-http-request.c +++ b/mail/e-http-request.c @@ -300,7 +300,7 @@ handle_http_request (GSimpleAsyncResult *res, GFileInfo *info; gchar *path; - path = camel_data_cache_get_filename (cache, "http", uri_md5, NULL); + path = camel_data_cache_get_filename (cache, "http", uri_md5); file = g_file_new_for_path (path); info = g_file_query_info (file, G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE, 0, cancellable, NULL); |