diff options
-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)) { |