diff options
author | Nikita Popov <nikic@php.net> | 2015-10-02 09:10:49 +0200 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2015-10-02 09:35:00 +0200 |
commit | 1287c48082adab66b07d8590390330278a4e0c9c (patch) | |
tree | 58c8956c4091e08cc35495cedae890c80eb8fdd3 /ext/interbase/ibase_blobs.c | |
parent | 1a39b6e3c0c23a5f883a6caa0897f7086c1d4f03 (diff) | |
download | php-git-1287c48082adab66b07d8590390330278a4e0c9c.tar.gz |
Fix/improve zpp usage
The ext/interbase changes are done blindly, fingers crossed.
Some of these are bug fixes, some make zpp usage more idiomatic.
Diffstat (limited to 'ext/interbase/ibase_blobs.c')
-rw-r--r-- | ext/interbase/ibase_blobs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/interbase/ibase_blobs.c b/ext/interbase/ibase_blobs.c index ba384f8cd2..d492f55f7a 100644 --- a/ext/interbase/ibase_blobs.c +++ b/ext/interbase/ibase_blobs.c @@ -318,7 +318,7 @@ PHP_FUNCTION(ibase_blob_add) PHP_FUNCTION(ibase_blob_get) { zval *blob_arg; - unsigned long len_arg; + zend_ulong len_arg; ibase_blob *ib_blob; RESET_ERRMSG; |