diff options
Diffstat (limited to 'camel/camel-store-summary.c')
-rw-r--r-- | camel/camel-store-summary.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/camel/camel-store-summary.c b/camel/camel-store-summary.c index 1eb931820f..87a0611d3f 100644 --- a/camel/camel-store-summary.c +++ b/camel/camel-store-summary.c @@ -371,9 +371,9 @@ camel_store_summary_load(CamelStoreSummary *s) error: i = ferror (in); - g_warning("Cannot load summary file: %s", strerror(ferror(in))); + g_warning ("Cannot load summary file: %s", strerror (ferror (in))); CAMEL_STORE_SUMMARY_UNLOCK(s, io_lock); - fclose(in); + fclose (in); s->flags |= ~CAMEL_STORE_SUMMARY_DIRTY; errno = i; @@ -409,13 +409,13 @@ camel_store_summary_save(CamelStoreSummary *s) fd = open(s->summary_path, O_RDWR|O_CREAT|O_TRUNC, 0600); if (fd == -1) { - io(printf("** open error: %s\n", strerror(errno))); + io(printf("** open error: %s\n", strerror (errno))); return -1; } out = fdopen(fd, "w"); if ( out == NULL ) { i = errno; - printf("** fdopen error: %s\n", strerror(errno)); + printf("** fdopen error: %s\n", strerror (errno)); close(fd); errno = i; return -1; |