Skip to content

Commit aa8e825

Browse files
committed
Merge branch 'master' of github.com:php/pecl-database-ibm_db2
2 parents deca815 + 7b25ec6 commit aa8e825

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

ibm_db2.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1886,7 +1886,6 @@ static void _php_db2_assign_options( void *handle, int type, char *opt_key, zval
18861886
static int _php_db2_parse_options ( zval *options, int type, void *handle )
18871887
{
18881888
int i = 0;
1889-
ulong num_idx;
18901889
char *opt_key; /* Holds the Option Index Key */
18911890
zval **data;
18921891
zval **tc_pass = NULL;
@@ -4766,7 +4765,7 @@ PHP_FUNCTION(db2_execute)
47664765
zval *val;
47674766
zend_string *key,*key1;
47684767
char str[1024] = {0};
4769-
ulong num_key;
4768+
zend_long num_key;
47704769
SQLPOINTER paramValuePtr=NULL;
47714770
SQLPOINTER valuePtr=NULL;
47724771
SQLPOINTER valuePtr2=NULL;
@@ -7552,7 +7551,7 @@ PHP_FUNCTION( db2_execute_many )
75527551
zend_string *key;
75537552
zend_string *key1,*key2,*key3,*key4,*key5;
75547553
zval *zv = NULL, *zv1 = NULL,*zv2,*zv3,*zv4,*zv5;
7555-
ulong num_key,num_key1,num_key2,num_key3,num_key4,num_key5;
7554+
zend_long num_key,num_key1,num_key2,num_key3,num_key4,num_key5;
75567555

75577556
/* These are used to loop over the param cache*/
75587557
param_node *tmp_curr, *prev_ptr, *curr_ptr;

0 commit comments

Comments
 (0)