diff options
author | foobar <sniper@php.net> | 2005-08-18 12:56:36 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-08-18 12:56:36 +0000 |
commit | dde3f89dd46ba809f8eb6a0333e32e6a55a27789 (patch) | |
tree | 363a3b32e3246f44217bd23230874ad664550d43 | |
parent | b385e0ad395c73264161e92f1af0f7356c03ada5 (diff) | |
download | php-git-dde3f89dd46ba809f8eb6a0333e32e6a55a27789.tar.gz |
Nuked EOL from error message
-rw-r--r-- | ext/unicode/locale.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |