From dde3f89dd46ba809f8eb6a0333e32e6a55a27789 Mon Sep 17 00:00:00 2001 From: foobar Date: Thu, 18 Aug 2005 12:56:36 +0000 Subject: [PATCH] Nuked EOL from error message --- ext/unicode/locale.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/unicode/locale.c b/ext/unicode/locale.c index 88335e53b2..ab0762c3b0 100644 --- a/ext/unicode/locale.c +++ b/ext/unicode/locale.c @@ -65,7 +65,7 @@ PHP_FUNCTION(icu_loc_set_default) * validation. */ if (U_FAILURE(status)) { - php_error(E_WARNING, "Invalid locale: %s\n", locale); + php_error(E_WARNING, "Invalid locale: %s", locale); RETURN_FALSE; } /* don't bother if locales are identical */ -- 2.50.1