From bb65f435ee1a41cb81c3711ca42f7372f945941f Mon Sep 17 00:00:00 2001 From: mestre Date: Fri, 26 Oct 2018 17:37:47 +0000 Subject: [PATCH] Add a few \n I missed to add in some fprintf(3)s in my last commit --- app/bdftopcf/bdftopcf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/bdftopcf/bdftopcf.c b/app/bdftopcf/bdftopcf.c index 0006a6886..720e14e8f 100644 --- a/app/bdftopcf/bdftopcf.c +++ b/app/bdftopcf/bdftopcf.c @@ -174,19 +174,19 @@ main(int argc, char *argv[]) exit(1); } if (pledge("stdio rpath wpath cpath", NULL) == -1) { - fprintf(stderr, "%s: could not pledge", program_name); + fprintf(stderr, "%s: could not pledge\n", program_name); exit(1); } } if (input_name && !output_name) { if (pledge("stdio rpath", NULL) == -1) { - fprintf(stderr, "%s: could not pledge", program_name); + fprintf(stderr, "%s: could not pledge\n", program_name); exit(1); } } if (!input_name && !output_name) { if (pledge("stdio", NULL) == -1) { - fprintf(stderr, "%s: could not pledge", program_name); + fprintf(stderr, "%s: could not pledge\n", program_name); exit(1); } }