diff options
author | Christopher Jones <sixd@php.net> | 2007-07-18 15:10:42 +0000 |
---|---|---|
committer | Christopher Jones <sixd@php.net> | 2007-07-18 15:10:42 +0000 |
commit | d2219c0a1a0ee33e03c74fbc8d78ca04bdc76adf (patch) | |
tree | 906b9492d10473a3fca9c00c75d30385ba4268d0 /ext/oci8/oci8_interface.c | |
parent | 6b4b1e7431374fe1812bad1a09ede85616fed62e (diff) | |
download | php-git-d2219c0a1a0ee33e03c74fbc8d78ca04bdc76adf.tar.gz |
MFH: add casts to fix compilation warnings
Diffstat (limited to 'ext/oci8/oci8_interface.c')
-rw-r--r-- | ext/oci8/oci8_interface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/oci8/oci8_interface.c b/ext/oci8/oci8_interface.c index a4416b3b29..427a88b7ec 100644 --- a/ext/oci8/oci8_interface.c +++ b/ext/oci8/oci8_interface.c @@ -1715,7 +1715,7 @@ PHP_FUNCTION(oci_password_change) RETURN_FALSE; } - if (php_oci_password_change(connection, user, user_len, pass_old, pass_old_len, pass_new, pass_new_len TSRMLS_CC)) { + if (php_oci_password_change(connection, (char *)user, user_len, (char *)pass_old, pass_old_len, (char *)pass_new, pass_new_len TSRMLS_CC)) { RETURN_FALSE; } RETURN_TRUE; @@ -1734,7 +1734,7 @@ PHP_FUNCTION(oci_password_change) RETURN_FALSE; } - connection = php_oci_do_connect_ex(user, user_len, pass_old, pass_old_len, pass_new, pass_new_len, dbname, dbname_len, NULL, OCI_DEFAULT, 0, 0 TSRMLS_CC); + connection = php_oci_do_connect_ex((char *)user, user_len, (char *)pass_old, pass_old_len, (char *)pass_new, pass_new_len, (char *)dbname, dbname_len, NULL, OCI_DEFAULT, 0, 0 TSRMLS_CC); if (!connection) { RETURN_FALSE; } |