From: Moriyoshi Koizumi Date: Mon, 30 Dec 2002 15:03:27 +0000 (+0000) Subject: just MFH X-Git-Tag: PHP_4_3_before_13561_fix~165 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ddcf71c483420675d5db08957e0acbcb9f0120dc;p=php just MFH --- diff --git a/ext/ncurses/ncurses_functions.c b/ext/ncurses/ncurses_functions.c index 0bd161e8c9..4d4b815579 100644 --- a/ext/ncurses/ncurses_functions.c +++ b/ext/ncurses/ncurses_functions.c @@ -83,7 +83,7 @@ PHP_FUNCTION(ncurses_color_set) IS_NCURSES_INITIALIZED(); RETURN_LONG(color_set(pair,NULL)); #else - php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s not supported in this build"); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Not supported in this build"); RETURN_FALSE; #endif } @@ -1050,7 +1050,7 @@ PHP_FUNCTION(ncurses_slk_color) IS_NCURSES_INITIALIZED(); RETURN_LONG(slk_color(intarg)); #else - php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s not supported in this build"); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Not supported in this build"); RETURN_FALSE; #endif } @@ -1125,7 +1125,7 @@ PHP_FUNCTION(ncurses_use_extended_names) IS_NCURSES_INITIALIZED(); RETURN_LONG(use_extended_names(intarg)); #else - php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s not supported in this build"); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Not supported in this build"); RETURN_FALSE; #endif } @@ -1663,7 +1663,7 @@ PHP_FUNCTION(ncurses_assume_default_colors) IS_NCURSES_INITIALIZED(); RETURN_LONG(assume_default_colors(i1,i2)); #else - php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s not supported in this build"); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Not supported in this build"); RETURN_FALSE; #endif } @@ -2075,7 +2075,7 @@ PHP_FUNCTION(ncurses_wcolor_set) RETURN_LONG(wcolor_set(*win, Z_LVAL_PP(color_pair), 0)); #else - php_error_docref(NULL TSRMLS_CC, E_WARNING,"%s not supported in this build"); + php_error_docref(NULL TSRMLS_CC, E_WARNING,"Not supported in this build"); RETURN_FALSE; #endif }