diff options
author | Christopher Jones <sixd@php.net> | 2011-07-27 00:04:23 +0000 |
---|---|---|
committer | Christopher Jones <sixd@php.net> | 2011-07-27 00:04:23 +0000 |
commit | 823d7a0534c3eaec7c8f6ff4889240df77baa58e (patch) | |
tree | cbc9c353a1fd6cb3245016434e727664dbb00818 /ext/oci8/oci8_statement.c | |
parent | 97913140b57a2777757f4982bac3e65d68547f44 (diff) | |
download | php-git-823d7a0534c3eaec7c8f6ff4889240df77baa58e.tar.gz |
Add explicit casts to remove some of Pierre's snapshot build warnings
Diffstat (limited to 'ext/oci8/oci8_statement.c')
-rw-r--r-- | ext/oci8/oci8_statement.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/oci8/oci8_statement.c b/ext/oci8/oci8_statement.c index bc83624180..b74b94e2a2 100644 --- a/ext/oci8/oci8_statement.c +++ b/ext/oci8/oci8_statement.c @@ -1480,7 +1480,7 @@ int php_oci_bind_array_by_name(php_oci_statement *statement, char *name, int nam name_len, (dvoid *) bindp->array.elements, (sb4) bind->array.max_length, - type, + (ub2)type, (dvoid *)bindp->array.indicators, (ub2 *)bind->array.element_lengths, (ub2 *)0, /* bindp->array.retcodes, */ |