From: Antony Dovgal Date: Thu, 31 Aug 2006 15:42:06 +0000 (+0000) Subject: fix typo in errmsg X-Git-Tag: RELEASE_1_0_0RC1~1806 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=272e4c24fd257928d989dea7cc1046e96cdc4de8;p=php fix typo in errmsg --- diff --git a/ext/pcntl/pcntl.c b/ext/pcntl/pcntl.c index b74fb7300f..d503ccbb96 100755 --- a/ext/pcntl/pcntl.c +++ b/ext/pcntl/pcntl.c @@ -549,7 +549,7 @@ PHP_FUNCTION(pcntl_signal) /* Special long value case for SIG_DFL and SIG_IGN */ if (Z_TYPE_P(handle)==IS_LONG) { if (Z_LVAL_P(handle)!= (long) SIG_DFL && Z_LVAL_P(handle) != (long) SIG_IGN) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid value for handle argument specifEied"); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid value for handle argument specified"); } if (php_signal(signo, (Sigfunc *) Z_LVAL_P(handle), (int) restart_syscalls) == SIG_ERR) { php_error_docref(NULL TSRMLS_CC, E_WARNING, "Error assigning signal");