From 9a255c8ff98815cc1c6d0b39c19e8ee2afbb587c Mon Sep 17 00:00:00 2001 From: dimitri staessens Date: Sun, 3 Jul 2016 15:15:50 +0200 Subject: irm bind: fixed double newline --- src/tools/irm/irm_bind.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/tools/irm/irm_bind.c') diff --git a/src/tools/irm/irm_bind.c b/src/tools/irm/irm_bind.c index 3fc1d5c5..92ebdd8a 100644 --- a/src/tools/irm/irm_bind.c +++ b/src/tools/irm/irm_bind.c @@ -80,12 +80,12 @@ int do_bind(int argc, char ** argv) } if (stat(ap_name, &s) != 0) { - printf("Application %s does not exist.\n\n", ap_name); + printf("Application %s does not exist.\n", ap_name); return -1; } if (!(s.st_mode & S_IXUSR)) { - printf("Application %s is not executable.\n\n", ap_name); + printf("Application %s is not executable.\n", ap_name); return -1; } -- cgit v1.2.3