From 2ffa3fe4a1b7f7bf4f3a9f2552c740a0e290ee5b Mon Sep 17 00:00:00 2001 From: Jose Bollo Date: Mon, 9 Sep 2019 12:28:46 +0200 Subject: Fix missing new lines Signed-off-by: Jose Bollo --- src/fbuf.c | 10 +++++----- src/filedb.c | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/fbuf.c b/src/fbuf.c index 55b8230..c4243e6 100644 --- a/src/fbuf.c +++ b/src/fbuf.c @@ -86,7 +86,7 @@ error2: close(fd); error: rc = -errno; - fprintf(stderr, "can't read file %s: %m", name); + fprintf(stderr, "can't read file %s: %m\n", name); fb->saved = fb->used = fb->size = 0; return rc; } @@ -134,7 +134,7 @@ fbuf_open( error: rc = -errno; - fprintf(stderr, "can't open file %s: %m", name); + fprintf(stderr, "can't open file %s: %m\n", name); fbuf_close(fb); return rc; } @@ -179,7 +179,7 @@ fbuf_sync( error: rc = -errno; - fprintf(stderr, "sync of file %s failed: %m", fb->name); + fprintf(stderr, "sync of file %s failed: %m\n", fb->name); return rc; } @@ -196,7 +196,7 @@ fbuf_ensure_capacity( capacity = get_asz(count); buffer = realloc(fb->buffer, capacity); if (buffer == NULL) { - fprintf(stderr, "alloc %u for file %s failed: %m", capacity, fb->name); + fprintf(stderr, "alloc %u for file %s failed: %m\n", capacity, fb->name); return -ENOMEM; } fb->buffer = buffer; @@ -266,7 +266,7 @@ fbuf_identify( /* bad identification */ errno = ENOKEY; - fprintf(stderr, "identification of file %s failed: %m", fb->name); + fprintf(stderr, "identification of file %s failed: %m\n", fb->name); return -ENOKEY; } diff --git a/src/filedb.c b/src/filedb.c index 9d75f40..ce37ad1 100644 --- a/src/filedb.c +++ b/src/filedb.c @@ -180,7 +180,7 @@ init_names( p = realloc(ns, all * sizeof *ns); if (p == NULL) { free(ns); - fprintf(stderr, "out of memory"); + fprintf(stderr, "out of memory\n"); goto error; } ns = p; @@ -197,7 +197,7 @@ init_names( return 0; bad_file: - fprintf(stderr, "bad file %s", filedb->fnames.name); + fprintf(stderr, "bad file %s\n", filedb->fnames.name); errno = ENOEXEC; error: return -1; @@ -370,7 +370,7 @@ recoverdb( } return rc; error: - fprintf(stderr, "db recovery impossible: %m"); + fprintf(stderr, "db recovery impossible: %m\n"); exit(5); return rc; } @@ -435,7 +435,7 @@ index_itf( if (!(up & 1023)) { p = realloc(filedb->names_sorted, (up + 1024) * sizeof *p); if (p == NULL) { - fprintf(stderr, "out of memory"); + fprintf(stderr, "out of memory\n"); return -1; } filedb->names_sorted = p; -- cgit 1.2.3-korg