summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorPatrick 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)
commit9893d18d444f8471bc8009d2e959b5d08bc17542 (patch)
treef6e4b091ed18ceb67f7ad5786520a7948d910799 /bin
parent35c731ecf369e0dcd6ebcefbda1460276a029a75 (diff)
Fix extra newlines in error two messages
Diffstat (limited to 'bin')
-rwxr-xr-xbin/bdf2fbcon4
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)) {