bjori Sat Oct 7 21:12:09 2006 UTC Modified files: /php-src/ext/shmop shmop.c Log: fix build http://cvs.php.net/viewvc.cgi/php-src/ext/shmop/shmop.c?r1=1.34&r2=1.35&diff_format=u Index: php-src/ext/shmop/shmop.c diff -u php-src/ext/shmop/shmop.c:1.34 php-src/ext/shmop/shmop.c:1.35 --- php-src/ext/shmop/shmop.c:1.34 Sat Oct 7 18:45:43 2006 +++ php-src/ext/shmop/shmop.c Sat Oct 7 21:12:09 2006 @@ -16,7 +16,7 @@ | Ilia Alshanetsky <[EMAIL PROTECTED]> | +----------------------------------------------------------------------+ */ -/* $Id: shmop.c,v 1.34 2006/10/07 18:45:43 iliaa Exp $ */ +/* $Id: shmop.c,v 1.35 2006/10/07 21:12:09 bjori Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -126,7 +126,7 @@ } if (flag_type == IS_UNICODE) { - flags = zend_unicode_to_ascii((UChar*)flags, flags_len); + flags = zend_unicode_to_ascii((UChar*)flags, flags_len TSRMLS_CC); if (!flags) { php_error_docref(NULL TSRMLS_CC, E_WARNING, "Binary or ASCII-Unicode string expected, non-ASCII-Unicode string received"); RETURN_FALSE;
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php