From f0d8b816af00186c108f6cdc538ec18d8b4dddba Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Fri, 7 Sep 2018 10:43:21 +0300 Subject: Remove \n from calls to lintwarn, warning, and fatal. --- gawkapi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gawkapi.c') diff --git a/gawkapi.c b/gawkapi.c index 80d3ebca..7b1445c4 100644 --- a/gawkapi.c +++ b/gawkapi.c @@ -1204,12 +1204,12 @@ api_flatten_array_typed(awk_ext_id_t id, /* Convert index and value to API types. */ if (! node_to_awk_value(index, & (*data)->elements[j].index, index_type)) { - fatal(_("api_flatten_array_typed: could not convert index %d to %s\n"), + fatal(_("api_flatten_array_typed: could not convert index %d to %s"), (int) i, valtype2str(index_type)); } if (! node_to_awk_value(value, & (*data)->elements[j].value, value_type)) { - fatal(_("api_flatten_array_typed: could not convert value %d to %s\n"), + fatal(_("api_flatten_array_typed: could not convert value %d to %s"), (int) i, valtype2str(value_type)); } } -- cgit v1.2.3