]> granicus.if.org Git - php/commitdiff
just MFH
authorMoriyoshi Koizumi <moriyoshi@php.net>
Mon, 30 Dec 2002 15:03:27 +0000 (15:03 +0000)
committerMoriyoshi Koizumi <moriyoshi@php.net>
Mon, 30 Dec 2002 15:03:27 +0000 (15:03 +0000)
ext/ncurses/ncurses_functions.c

index 0bd161e8c9b7e1199578a4812393c45ac0c101b2..4d4b815579dc44d1e712595e173acdd1bc7730f2 100644 (file)
@@ -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
 }