Skip to content

Commit 715ba27

Browse files
committed
fix indentation
1 parent 45102c8 commit 715ba27

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

ext/odbc/php_odbc_includes.h

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@
7575
#endif
7676

7777
typedef struct odbc_connection {
78-
ODBC_SQL_ENV_T henv;
79-
ODBC_SQL_CONN_T hdbc;
80-
char laststate[6];
81-
char lasterrormsg[SQL_MAX_MESSAGE_LENGTH];
78+
ODBC_SQL_ENV_T henv;
79+
ODBC_SQL_CONN_T hdbc;
80+
char laststate[6];
81+
char lasterrormsg[SQL_MAX_MESSAGE_LENGTH];
8282
HashTable results;
8383
} odbc_connection;
8484

@@ -126,11 +126,11 @@ ZEND_BEGIN_MODULE_GLOBALS(odbc)
126126
zend_long num_persistent;
127127
zend_long num_links;
128128
int defConn;
129-
zend_long defaultlrl;
130-
zend_long defaultbinmode;
131-
zend_long default_cursortype;
132-
char laststate[6];
133-
char lasterrormsg[SQL_MAX_MESSAGE_LENGTH];
129+
zend_long defaultlrl;
130+
zend_long defaultbinmode;
131+
zend_long default_cursortype;
132+
char laststate[6];
133+
char lasterrormsg[SQL_MAX_MESSAGE_LENGTH];
134134
/* Stores ODBC links throughout the duration of a request. The connection member may be either persistent or
135135
* non-persistent. In the former case, it is a pointer to an item in EG(persistent_list). This solution makes it
136136
* possible to properly free links during RSHUTDOWN (or when they are explicitly closed), while persistent

0 commit comments

Comments
 (0)