diff options
author | Wez Furlong <wez@php.net> | 2005-11-01 03:04:25 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2005-11-01 03:04:25 +0000 |
commit | b3b9ee146763cd0444c8159037d7b5b754318d8e (patch) | |
tree | 3c99f76d92bbceb64353c5ef3cccbc873d70b869 /ext/pdo_oci | |
parent | 598f182c2993d2efd816e4d0868dc64fbcca10c7 (diff) | |
download | php-git-b3b9ee146763cd0444c8159037d7b5b754318d8e.tar.gz |
hrmm, typo fix.
Diffstat (limited to 'ext/pdo_oci')
-rwxr-xr-x | ext/pdo_oci/oci_statement.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_oci/oci_statement.c b/ext/pdo_oci/oci_statement.c index 102249e699..6ef399323a 100755 --- a/ext/pdo_oci/oci_statement.c +++ b/ext/pdo_oci/oci_statement.c @@ -138,7 +138,7 @@ static int oci_stmt_execute(pdo_stmt_t *stmt TSRMLS_DC) /* {{{ */ } STMT_CALL(OCIStmtExecute, (S->H->svc, S->stmt, S->err, - (S->stmt_type == OCI_STMT_SELECT || S->have_blobs) : 1, 0, NULL, NULL, + (S->stmt_type == OCI_STMT_SELECT || S->have_blobs) ? 1 : 0, 0, NULL, NULL, mode)); if (!stmt->executed) { |