diff options
author | Anatol Belski <ab@php.net> | 2014-08-21 20:31:32 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-08-21 20:31:32 +0200 |
commit | 4a85ec874a6d165f8ead5ff84298aebf41b11319 (patch) | |
tree | 7c0c7d713f22793055e12729a23334a76f54c469 /ext/com_dotnet | |
parent | fdfe8ac36e5c2913c74e497871bd5d8b7aa7a968 (diff) | |
download | php-git-4a85ec874a6d165f8ead5ff84298aebf41b11319.tar.gz |
fix zpp
Diffstat (limited to 'ext/com_dotnet')
-rw-r--r-- | ext/com_dotnet/com_dotnet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/com_dotnet/com_dotnet.c b/ext/com_dotnet/com_dotnet.c index 9698fb3419..c742fd30fc 100644 --- a/ext/com_dotnet/com_dotnet.c +++ b/ext/com_dotnet/com_dotnet.c @@ -243,7 +243,7 @@ PHP_FUNCTION(com_dotnet_create_instance) obj = CDNO_FETCH(object); - if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|l", + if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|i", &assembly_name, &assembly_name_len, &datatype_name, &datatype_name_len, &obj->code_page)) { |