diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-06-29 20:00:15 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-06-29 20:00:15 (EDT) |
commit | 9893d18d444f8471bc8009d2e959b5d08bc17542 (patch) | |
tree | f6e4b091ed18ceb67f7ad5786520a7948d910799 | |
parent | 35c731ecf369e0dcd6ebcefbda1460276a029a75 (diff) |
Fix extra newlines in error two messages
-rwxr-xr-x | bin/bdf2fbcon | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/bdf2fbcon b/bin/bdf2fbcon index 6979330..8f822d6 100755 --- a/bin/bdf2fbcon +++ b/bin/bdf2fbcon @@ -374,13 +374,13 @@ sub main } if ($#ARGV lt 0) { - error("No input files\n"); + error('No input files'); return 4; } if (exists($opts{'o'})) { if ($#ARGV gt 0) { - error("Cannot specify -o with multiple files\n"); + error('Cannot specify -o with multiple files'); return 4; } if (not convert($ARGV[0], $opts{'o'}, %convert_opts)) { |