From 057bd8173b055b22794d7e544a1b6ddd4f60ff96 Mon Sep 17 00:00:00 2001 From: Peter Verthez Date: Thu, 13 Dec 2001 20:15:28 +0000 Subject: [PATCH] Remove newline from an error. --- gedcom/multilex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gedcom/multilex.c b/gedcom/multilex.c index 1b9ce6f..8473624 100644 --- a/gedcom/multilex.c +++ b/gedcom/multilex.c @@ -119,7 +119,7 @@ int gedcom_parse_file(char* file_name) line_no = 1; file = fopen(file_name, "r"); if (!file) { - gedcom_error(_("Could not open file '%s'\n"), file_name); + gedcom_error(_("Could not open file '%s'"), file_name); } else { init_encodings(); -- 2.30.2