diff options
author | Milan Crha <mcrha@redhat.com> | 2011-08-04 23:03:51 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-09-14 20:08:43 +0800 |
commit | eb79ee913685794a77a7bbeb24eb73028f183813 (patch) | |
tree | 82f4bf01c7ac404d0fe8d5582c4c2d1e7e42405e | |
parent | 0f3845158712513c835962d27d52faf46b1cc9a9 (diff) | |
download | gsoc2013-evolution-eb79ee913685794a77a7bbeb24eb73028f183813.tar gsoc2013-evolution-eb79ee913685794a77a7bbeb24eb73028f183813.tar.gz gsoc2013-evolution-eb79ee913685794a77a7bbeb24eb73028f183813.tar.bz2 gsoc2013-evolution-eb79ee913685794a77a7bbeb24eb73028f183813.tar.lz gsoc2013-evolution-eb79ee913685794a77a7bbeb24eb73028f183813.tar.xz gsoc2013-evolution-eb79ee913685794a77a7bbeb24eb73028f183813.tar.zst gsoc2013-evolution-eb79ee913685794a77a7bbeb24eb73028f183813.zip |
Bug #655870 - Uses incorrect pointer as string in error message
-rw-r--r-- | plugins/pst-import/pst-importer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/pst-import/pst-importer.c b/plugins/pst-import/pst-importer.c index bcefc4e129..e2d42ee618 100644 --- a/plugins/pst-import/pst-importer.c +++ b/plugins/pst-import/pst-importer.c @@ -322,7 +322,7 @@ get_suggested_foldername (EImportTargetURI *target) } if (folder != NULL) { - pst_error_msg ("Error searching for an unused folder name. uri=%s", foldername); + pst_error_msg ("Error searching for an unused folder name. uri=%s", foldername->str); } } |