summaryrefslogtreecommitdiff
path: root/ext/oci8/php_oci8_int.h
diff options
context:
space:
mode:
authorGabriel Caruso <carusogabriel34@gmail.com>2018-01-04 02:38:32 -0200
committerGabriel Caruso <carusogabriel34@gmail.com>2018-01-04 02:38:32 -0200
commit2238403892ccf87143a59814538d9f764509d9e7 (patch)
treecb2f447901c594b3ec3e97f4f37763f0cbc050a4 /ext/oci8/php_oci8_int.h
parent0e3dede07c6677ed5cc60ddad3f7552f83b45a4b (diff)
downloadphp-git-2238403892ccf87143a59814538d9f764509d9e7.tar.gz
Trailing whitespaces on ext/*
Signed-off-by: Gabriel Caruso <carusogabriel34@gmail.com>
Diffstat (limited to 'ext/oci8/php_oci8_int.h')
-rw-r--r--ext/oci8/php_oci8_int.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/ext/oci8/php_oci8_int.h b/ext/oci8/php_oci8_int.h
index 54ad1c0981..90448d36ea 100644
--- a/ext/oci8/php_oci8_int.h
+++ b/ext/oci8/php_oci8_int.h
@@ -98,7 +98,7 @@ extern zend_class_entry *oci_coll_class_entry_ptr;
#define PHP_OCI_ERRBUF_LEN OCI_ERROR_MAXMSG_SIZE2
#else
#define PHP_OCI_ERRBUF_LEN OCI_ERROR_MAXMSG_SIZE
-#endif
+#endif
/* The mode parameter for oci_connect() is overloaded and accepts both
* privilege and external authentication flags OR'd together.
@@ -136,7 +136,7 @@ typedef struct {
/* }}} */
/* {{{ php_oci_connection */
-typedef struct {
+typedef struct {
zend_resource *id; /* resource ID */
OCIEnv *env; /* private env handle */
ub2 charset; /* charset ID */
@@ -170,7 +170,7 @@ typedef struct {
/* }}} */
/* {{{ php_oci_descriptor */
-typedef struct {
+typedef struct {
zend_resource *id;
zend_ulong index; /* descriptors hash table index */
php_oci_connection *connection; /* parent connection handle */
@@ -187,7 +187,7 @@ typedef struct {
/* }}} */
/* {{{ php_oci_lob_ctx */
-typedef struct {
+typedef struct {
char **lob_data; /* address of pointer to LOB data */
ub4 *lob_len; /* address of LOB length variable (bytes) */
ub4 alloc_len;
@@ -195,7 +195,7 @@ typedef struct {
/* }}} */
/* {{{ php_oci_collection */
-typedef struct {
+typedef struct {
zend_resource *id;
php_oci_connection *connection; /* parent connection handle */
OCIType *tdo; /* collection's type handle */
@@ -208,7 +208,7 @@ typedef struct {
/* }}} */
/* {{{ php_oci_define */
-typedef struct {
+typedef struct {
zval val; /* zval used in define */
text *name; /* placeholder's name */
ub4 name_len; /* placeholder's name length */
@@ -217,7 +217,7 @@ typedef struct {
/* }}} */
/* {{{ php_oci_statement */
-typedef struct {
+typedef struct {
zend_resource *id;
zend_resource *parent_stmtid; /* parent statement id */
struct php_oci_statement *impres_child_stmt;/* child of current Implicit Result Set statement handle */
@@ -242,7 +242,7 @@ typedef struct {
/* }}} */
/* {{{ php_oci_bind */
-typedef struct {
+typedef struct {
OCIBind *bind; /* bind handle */
zval val; /* value */
dvoid *descriptor; /* used for binding of LOBS etc */
@@ -265,7 +265,7 @@ typedef struct {
/* }}} */
/* {{{ php_oci_out_column */
-typedef struct {
+typedef struct {
php_oci_statement *statement; /* statement handle. used when fetching REFCURSORS */
php_oci_statement *nested_statement; /* statement handle. used when fetching REFCURSORS */
OCIDefine *oci_define; /* define handle */