summaryrefslogtreecommitdiff
path: root/ext/ncurses/ncurses_functions.c
diff options
context:
space:
mode:
authorMoriyoshi Koizumi <moriyoshi@php.net>2002-12-30 15:03:27 +0000
committerMoriyoshi Koizumi <moriyoshi@php.net>2002-12-30 15:03:27 +0000
commitddcf71c483420675d5db08957e0acbcb9f0120dc (patch)
tree23de0e1d1475ad63895b92adfa46c142cec1b2c4 /ext/ncurses/ncurses_functions.c
parent28624bb7f60d5ab1e87e85f61efaf9624e83fc10 (diff)
downloadphp-git-ddcf71c483420675d5db08957e0acbcb9f0120dc.tar.gz
just MFH
Diffstat (limited to 'ext/ncurses/ncurses_functions.c')
-rw-r--r--ext/ncurses/ncurses_functions.c10
1 files changed, 5 insertions, 5 deletions
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
}