diff options
author | Milan Crha <mcrha@redhat.com> | 2011-08-04 23:03:51 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2011-08-04 23:05:28 +0800 |
commit | 5397851156bf868ac912376d0ea2060ec1b528c3 (patch) | |
tree | 0a5f6b3c10eea06ba6de0893793f501e422fa5bf /plugins | |
parent | bbbcef5a7e0bb6df689fdfde0d71e98df0822be5 (diff) | |
download | gsoc2013-evolution-5397851156bf868ac912376d0ea2060ec1b528c3.tar gsoc2013-evolution-5397851156bf868ac912376d0ea2060ec1b528c3.tar.gz gsoc2013-evolution-5397851156bf868ac912376d0ea2060ec1b528c3.tar.bz2 gsoc2013-evolution-5397851156bf868ac912376d0ea2060ec1b528c3.tar.lz gsoc2013-evolution-5397851156bf868ac912376d0ea2060ec1b528c3.tar.xz gsoc2013-evolution-5397851156bf868ac912376d0ea2060ec1b528c3.tar.zst gsoc2013-evolution-5397851156bf868ac912376d0ea2060ec1b528c3.zip |
Bug #655870 - Uses incorrect pointer as string in error message
Diffstat (limited to 'plugins')
-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); } } |