diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-01-15 23:16:25 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-01-16 10:50:05 +0800 |
commit | cae22334fa6bc395ccc421b09e0af94c89297c41 (patch) | |
tree | 84881f467c0448db044d8bb3533e044a7152bb2b /mail/importers | |
parent | d37784ed3db20fd74ea4b8d9fdfe58518370cea2 (diff) | |
download | gsoc2013-evolution-cae22334fa6bc395ccc421b09e0af94c89297c41.tar.gz gsoc2013-evolution-cae22334fa6bc395ccc421b09e0af94c89297c41.tar.zst gsoc2013-evolution-cae22334fa6bc395ccc421b09e0af94c89297c41.zip |
Remove dead assignments found by clang.
Diffstat (limited to 'mail/importers')
-rw-r--r-- | mail/importers/pine-importer.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/mail/importers/pine-importer.c b/mail/importers/pine-importer.c index c3d4b15bf8..873fc93c46 100644 --- a/mail/importers/pine-importer.c +++ b/mail/importers/pine-importer.c @@ -66,15 +66,12 @@ struct _pine_import_msg { static gboolean pine_supported(EImport *ei, EImportTarget *target, EImportImporter *im) { - EImportTargetHome *s; gchar *maildir, *addrfile; gboolean md_exists, addr_exists; if (target->type != E_IMPORT_TARGET_HOME) return FALSE; - s = (EImportTargetHome *)target; - maildir = g_build_filename(g_get_home_dir (), "mail", NULL); md_exists = g_file_test(maildir, G_FILE_TEST_IS_DIR); g_free(maildir); |