From 2156a8b05e538b727e8c58923bb9d4f60a43bc0f Mon Sep 17 00:00:00 2001 From: Hannes Magnusson Date: Sat, 7 Oct 2006 21:12:09 +0000 Subject: [PATCH] fix build --- ext/shmop/shmop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/shmop/shmop.c b/ext/shmop/shmop.c index 1bb97f8332..a4578c02ea 100644 --- a/ext/shmop/shmop.c +++ b/ext/shmop/shmop.c @@ -126,7 +126,7 @@ PHP_FUNCTION(shmop_open) } 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; -- 2.50.1