From 9893d18d444f8471bc8009d2e959b5d08bc17542 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sat, 29 Jun 2019 20:00:15 -0400 Subject: Fix extra newlines in error two messages --- 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)) { -- cgit v0.9.1