diff options
author | Moriyoshi Koizumi <moriyoshi@php.net> | 2002-12-22 19:51:49 +0000 |
---|---|---|
committer | Moriyoshi Koizumi <moriyoshi@php.net> | 2002-12-22 19:51:49 +0000 |
commit | 45f67837e618dc249dd1b5c12f6dd57638590a3a (patch) | |
tree | 972b2f43f51d0f37bb71f31b4d79d21dec00a4b5 /ext/ncurses/ncurses_functions.c | |
parent | 0ae3050aa5d99ae969b49b55badabda5156c2989 (diff) | |
download | php-git-45f67837e618dc249dd1b5c12f6dd57638590a3a.tar.gz |
Removed "%s" from format strings
Diffstat (limited to 'ext/ncurses/ncurses_functions.c')
-rw-r--r-- | ext/ncurses/ncurses_functions.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/ncurses/ncurses_functions.c b/ext/ncurses/ncurses_functions.c index 948dda8f90..68b8fb96d7 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 } @@ -1047,7 +1047,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 } @@ -1122,7 +1122,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 } @@ -1660,7 +1660,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 } @@ -2072,7 +2072,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 } |