diff options
author | Peter Williams <peterw@ximian.com> | 2001-08-24 04:47:10 +0800 |
---|---|---|
committer | Peter Williams <peterw@src.gnome.org> | 2001-08-24 04:47:10 +0800 |
commit | 76f3bb1c4fcc41ff194174a015695c9673210308 (patch) | |
tree | 022a2afb95dde226f639de1bb06aadfd66921148 | |
parent | 52e923c416ea6a73c0c156aa72d687c2b61824bb (diff) | |
download | gsoc2013-evolution-76f3bb1c4fcc41ff194174a015695c9673210308.tar gsoc2013-evolution-76f3bb1c4fcc41ff194174a015695c9673210308.tar.gz gsoc2013-evolution-76f3bb1c4fcc41ff194174a015695c9673210308.tar.bz2 gsoc2013-evolution-76f3bb1c4fcc41ff194174a015695c9673210308.tar.lz gsoc2013-evolution-76f3bb1c4fcc41ff194174a015695c9673210308.tar.xz gsoc2013-evolution-76f3bb1c4fcc41ff194174a015695c9673210308.tar.zst gsoc2013-evolution-76f3bb1c4fcc41ff194174a015695c9673210308.zip |
Add a missing \n to the end of a printf.
2001-08-23 Peter Williams <peterw@ximian.com>
* providers/local/camel-mbox-summary.c (summary_rebuild): Add a
missing \n to the end of a printf.
* providers/local/camel-spool-summary.c (summary_rebuild): Same.
svn path=/trunk/; revision=12421
-rw-r--r-- | camel/ChangeLog | 7 | ||||
-rw-r--r-- | camel/providers/local/camel-mbox-summary.c | 2 | ||||
-rw-r--r-- | camel/providers/local/camel-spool-summary.c | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index a0e6e07768..7f9021c97d 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,10 @@ +2001-08-23 Peter Williams <peterw@ximian.com> + + * providers/local/camel-mbox-summary.c (summary_rebuild): Add a + missing \n to the end of a printf. + + * providers/local/camel-spool-summary.c (summary_rebuild): Same. + 2001-08-22 Jeffrey Stedfast <fejj@ximian.com> * providers/pop3/camel-pop3-folder.c (pop3_generate_uids): diff --git a/camel/providers/local/camel-mbox-summary.c b/camel/providers/local/camel-mbox-summary.c index 8ba02121dd..eed8a9d083 100644 --- a/camel/providers/local/camel-mbox-summary.c +++ b/camel/providers/local/camel-mbox-summary.c @@ -250,7 +250,7 @@ summary_rebuild(CamelMboxSummary *mbs, off_t offset, CamelException *ex) fd = open(cls->folder_path, O_RDONLY); if (fd == -1) { - printf("%s failed to open: %s", cls->folder_path, strerror(errno)); + printf("%s failed to open: %s\n", cls->folder_path, strerror(errno)); camel_exception_setv(ex, 1, _("Could not open folder: %s: summarizing from position %ld: %s"), cls->folder_path, offset, strerror(errno)); camel_operation_end(NULL); diff --git a/camel/providers/local/camel-spool-summary.c b/camel/providers/local/camel-spool-summary.c index 3ef9c41d17..8a3188296b 100644 --- a/camel/providers/local/camel-spool-summary.c +++ b/camel/providers/local/camel-spool-summary.c @@ -380,7 +380,7 @@ summary_rebuild(CamelSpoolSummary *cls, off_t offset, CamelException *ex) fd = open(cls->folder_path, O_RDONLY); if (fd == -1) { - printf("%s failed to open: %s", cls->folder_path, strerror(errno)); + printf("%s failed to open: %s\n", cls->folder_path, strerror(errno)); camel_exception_setv(ex, 1, _("Could not open folder: %s: summarizing from position %ld: %s"), cls->folder_path, offset, strerror(errno)); camel_operation_end(NULL); |