From daa692b64776f1e2552a198ae786d2e5f3b50620 Mon Sep 17 00:00:00 2001 From: kraai Date: Wed, 31 Jan 2001 19:00:21 +0000 Subject: Removed trailing \n from error_msg{,_and_die} messages. git-svn-id: svn://busybox.net/trunk/busybox@1732 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- tr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tr.c') diff --git a/tr.c b/tr.c index 2717a92db..36f29de44 100644 --- a/tr.c +++ b/tr.c @@ -186,7 +186,7 @@ extern int tr_main(int argc, char **argv) input_length = complement(input, input_length); if (argv[index] != NULL) { if (*argv[index] == '\0') - error_msg_and_die("STRING2 cannot be empty\n"); + error_msg_and_die("STRING2 cannot be empty"); output_length = expand(argv[index], output); map(input, input_length, output, output_length); } -- cgit v1.2.3-55-g6feb