Commit:    e6053acd78259cc8bab396ede42cebc04de9157d
Author:    Christopher Jones <s...@php.net>         Fri, 30 Aug 2013 11:14:20 
-0700
Parents:   faddd409a44f1b0b991951361ccdc8487a003bd5
Branches:  master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=e6053acd78259cc8bab396ede42cebc04de9157d

Log:
OCI8 whitespace: remove tabs embedded in code

Changed paths:
  M  ext/oci8/oci8.c
  M  ext/oci8/oci8_collection.c
  M  ext/oci8/oci8_statement.c


Diff:
diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c
index b30fb4b..dc4737f 100644
--- a/ext/oci8/oci8.c
+++ b/ext/oci8/oci8.c
@@ -2327,7 +2327,7 @@ static int php_oci_connection_close(php_oci_connection 
*connection TSRMLS_DC)
                }
 
                if (connection->svc) {
-                       PHP_OCI_CALL(OCIHandleFree, ((dvoid *) connection->svc, 
(ub4) OCI_HTYPE_SVCCTX));
+                       PHP_OCI_CALL(OCIHandleFree, ((dvoid *) connection->svc, 
(ub4) OCI_HTYPE_SVCCTX));
                }
 
                if (connection->server) {
diff --git a/ext/oci8/oci8_collection.c b/ext/oci8/oci8_collection.c
index 4abfbd6..ae93614 100644
--- a/ext/oci8/oci8_collection.c
+++ b/ext/oci8/oci8_collection.c
@@ -105,7 +105,7 @@ php_oci_collection * 
php_oci_collection_create(php_oci_connection *connection, c
        }
 
        /* get first parameter handle */
-       PHP_OCI_CALL_RETURN(connection->errcode, OCIAttrGet, ((dvoid *) dschp1, 
(ub4) OCI_HTYPE_DESCRIBE, (dvoid *)&parmp1, (ub4 *)0, (ub4)OCI_ATTR_PARAM,      
connection->err));
+       PHP_OCI_CALL_RETURN(connection->errcode, OCIAttrGet, ((dvoid *) dschp1, 
(ub4) OCI_HTYPE_DESCRIBE, (dvoid *)&parmp1, (ub4 *)0, (ub4)OCI_ATTR_PARAM, 
connection->err));
 
        if (connection->errcode != OCI_SUCCESS) {
                goto CLEANUP;
diff --git a/ext/oci8/oci8_statement.c b/ext/oci8/oci8_statement.c
index cf8d23d..752a45b 100644
--- a/ext/oci8/oci8_statement.c
+++ b/ext/oci8/oci8_statement.c
@@ -502,7 +502,7 @@ int php_oci_statement_execute(php_oci_statement *statement, 
ub4 mode TSRMLS_DC)
        
        if (!statement->stmttype) {
                /* get statement type */
-               PHP_OCI_CALL_RETURN(statement->errcode, OCIAttrGet, ((dvoid 
*)statement->stmt, OCI_HTYPE_STMT, (ub2 *)&statement->stmttype, (ub4 *)0,   
OCI_ATTR_STMT_TYPE,     statement->err));
+               PHP_OCI_CALL_RETURN(statement->errcode, OCIAttrGet, ((dvoid 
*)statement->stmt, OCI_HTYPE_STMT, (ub2 *)&statement->stmttype, (ub4 *)0, 
OCI_ATTR_STMT_TYPE, statement->err));
 
                if (statement->errcode != OCI_SUCCESS) {
                        statement->errcode = php_oci_error(statement->err, 
statement->errcode TSRMLS_CC);
@@ -528,7 +528,7 @@ int php_oci_statement_execute(php_oci_statement *statement, 
ub4 mode TSRMLS_DC)
                }
 
                /* execute statement */
-               PHP_OCI_CALL_RETURN(statement->errcode, OCIStmtExecute, 
(statement->connection->svc,    statement->stmt, statement->err, iters, 0, 
NULL, NULL, mode));
+               PHP_OCI_CALL_RETURN(statement->errcode, OCIStmtExecute, 
(statement->connection->svc, statement->stmt, statement->err, iters, 0, NULL, 
NULL, mode));
 
                if (statement->errcode != OCI_SUCCESS) {
                        statement->errcode = php_oci_error(statement->err, 
statement->errcode TSRMLS_CC);


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to