diff options
author | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-07-03 15:15:50 +0200 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-07-03 15:15:50 +0200 |
commit | 9a255c8ff98815cc1c6d0b39c19e8ee2afbb587c (patch) | |
tree | 2dfdf933694cd6c6c74d9b6d8c4fc7d69b3aa450 /src/tools/irm | |
parent | 5a2123471a4b4a2bd8ee260879a207aebd5d1441 (diff) | |
download | ouroboros-9a255c8ff98815cc1c6d0b39c19e8ee2afbb587c.tar.gz ouroboros-9a255c8ff98815cc1c6d0b39c19e8ee2afbb587c.zip |
irm bind: fixed double newline
Diffstat (limited to 'src/tools/irm')
-rw-r--r-- | src/tools/irm/irm_bind.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |