Skip to content

Commit d0aadee

Browse files
committed
ext/odbc: correct spaces that i missed again
1 parent 99214f6 commit d0aadee

1 file changed

Lines changed: 30 additions & 30 deletions

File tree

ext/odbc/php_odbc.c

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ void php_odbc_fetch_attribs(INTERNAL_FUNCTION_PARAMETERS, int mode)
636636
zend_long flag;
637637

638638
ZEND_PARSE_PARAMETERS_START(2, 2)
639-
Z_PARAM_OBJECT_OF_CLASS(pv_res, odbc_result_ce)
639+
Z_PARAM_OBJECT_OF_CLASS(pv_res, odbc_result_ce)
640640
Z_PARAM_LONG(flag)
641641
ZEND_PARSE_PARAMETERS_END();
642642

@@ -763,7 +763,7 @@ void odbc_transact(INTERNAL_FUNCTION_PARAMETERS, int type)
763763
zval *pv_conn;
764764

765765
ZEND_PARSE_PARAMETERS_START(1, 1)
766-
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
766+
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
767767
ZEND_PARSE_PARAMETERS_END();
768768

769769
odbc_connection *conn = Z_ODBC_CONNECTION_P(pv_conn);
@@ -788,7 +788,7 @@ void odbc_column_lengths(INTERNAL_FUNCTION_PARAMETERS, int type)
788788
zend_long pv_num;
789789

790790
ZEND_PARSE_PARAMETERS_START(2, 2)
791-
Z_PARAM_OBJECT_OF_CLASS(pv_res, odbc_result_ce)
791+
Z_PARAM_OBJECT_OF_CLASS(pv_res, odbc_result_ce)
792792
Z_PARAM_LONG(pv_num)
793793
ZEND_PARSE_PARAMETERS_END();
794794

@@ -865,7 +865,7 @@ PHP_FUNCTION(odbc_prepare)
865865
SQLUINTEGER scrollopts;
866866

867867
ZEND_PARSE_PARAMETERS_START(2, 2)
868-
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
868+
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
869869
Z_PARAM_STRING(query, query_len)
870870
ZEND_PARSE_PARAMETERS_END();
871871

@@ -979,7 +979,7 @@ PHP_FUNCTION(odbc_execute)
979979
RETCODE rc;
980980

981981
ZEND_PARSE_PARAMETERS_START(1, 2)
982-
Z_PARAM_OBJECT_OF_CLASS(pv_res, odbc_result_ce)
982+
Z_PARAM_OBJECT_OF_CLASS(pv_res, odbc_result_ce)
983983
Z_PARAM_OPTIONAL
984984
Z_PARAM_ARRAY_HT(pv_param_ht)
985985
ZEND_PARSE_PARAMETERS_END();
@@ -1134,7 +1134,7 @@ PHP_FUNCTION(odbc_cursor)
11341134
RETCODE rc;
11351135

11361136
ZEND_PARSE_PARAMETERS_START(1, 1)
1137-
Z_PARAM_OBJECT_OF_CLASS(pv_res, odbc_result_ce)
1137+
Z_PARAM_OBJECT_OF_CLASS(pv_res, odbc_result_ce)
11381138
ZEND_PARSE_PARAMETERS_END();
11391139

11401140
result = Z_ODBC_RESULT_P(pv_res);
@@ -1189,7 +1189,7 @@ PHP_FUNCTION(odbc_data_source)
11891189
SQLSMALLINT len1=0, len2=0, fetch_type;
11901190

11911191
ZEND_PARSE_PARAMETERS_START(2, 2)
1192-
Z_PARAM_OBJECT_OF_CLASS(zv_conn, odbc_connection_ce)
1192+
Z_PARAM_OBJECT_OF_CLASS(zv_conn, odbc_connection_ce)
11931193
Z_PARAM_LONG(zv_fetch_type)
11941194
ZEND_PARSE_PARAMETERS_END();
11951195

@@ -1248,7 +1248,7 @@ PHP_FUNCTION(odbc_exec)
12481248
SQLUINTEGER scrollopts;
12491249

12501250
ZEND_PARSE_PARAMETERS_START(2, 2)
1251-
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
1251+
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
12521252
Z_PARAM_STRING(query, query_len)
12531253
ZEND_PARSE_PARAMETERS_END();
12541254

@@ -1868,7 +1868,7 @@ PHP_FUNCTION(odbc_free_result)
18681868
odbc_result *result;
18691869

18701870
ZEND_PARSE_PARAMETERS_START(1, 1)
1871-
Z_PARAM_OBJECT_OF_CLASS(pv_res, odbc_result_ce)
1871+
Z_PARAM_OBJECT_OF_CLASS(pv_res, odbc_result_ce)
18721872
ZEND_PARSE_PARAMETERS_END();
18731873

18741874
result = Z_ODBC_RESULT_P(pv_res);
@@ -2187,7 +2187,7 @@ PHP_FUNCTION(odbc_close)
21872187
odbc_link *link;
21882188

21892189
ZEND_PARSE_PARAMETERS_START(1, 1)
2190-
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
2190+
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
21912191
ZEND_PARSE_PARAMETERS_END();
21922192

21932193
link = Z_ODBC_LINK_P(pv_conn);
@@ -2210,7 +2210,7 @@ PHP_FUNCTION(odbc_num_rows)
22102210
zval *pv_res;
22112211

22122212
ZEND_PARSE_PARAMETERS_START(1, 1)
2213-
Z_PARAM_OBJECT_OF_CLASS(pv_res, odbc_result_ce)
2213+
Z_PARAM_OBJECT_OF_CLASS(pv_res, odbc_result_ce)
22142214
ZEND_PARSE_PARAMETERS_END();
22152215

22162216
result = Z_ODBC_RESULT_P(pv_res);
@@ -2229,7 +2229,7 @@ PHP_FUNCTION(odbc_next_result)
22292229
int rc, i;
22302230

22312231
ZEND_PARSE_PARAMETERS_START(1, 1)
2232-
Z_PARAM_OBJECT_OF_CLASS(pv_res, odbc_result_ce)
2232+
Z_PARAM_OBJECT_OF_CLASS(pv_res, odbc_result_ce)
22332233
ZEND_PARSE_PARAMETERS_END();
22342234

22352235
result = Z_ODBC_RESULT_P(pv_res);
@@ -2275,7 +2275,7 @@ PHP_FUNCTION(odbc_num_fields)
22752275
zval *pv_res;
22762276

22772277
ZEND_PARSE_PARAMETERS_START(1, 1)
2278-
Z_PARAM_OBJECT_OF_CLASS(pv_res, odbc_result_ce)
2278+
Z_PARAM_OBJECT_OF_CLASS(pv_res, odbc_result_ce)
22792279
ZEND_PARSE_PARAMETERS_END();
22802280

22812281
result = Z_ODBC_RESULT_P(pv_res);
@@ -2293,7 +2293,7 @@ PHP_FUNCTION(odbc_field_name)
22932293
zend_long pv_num;
22942294

22952295
ZEND_PARSE_PARAMETERS_START(2, 2)
2296-
Z_PARAM_OBJECT_OF_CLASS(pv_res, odbc_result_ce)
2296+
Z_PARAM_OBJECT_OF_CLASS(pv_res, odbc_result_ce)
22972297
Z_PARAM_LONG(pv_num)
22982298
ZEND_PARSE_PARAMETERS_END();
22992299

@@ -2329,7 +2329,7 @@ PHP_FUNCTION(odbc_field_type)
23292329
zend_long pv_num;
23302330

23312331
ZEND_PARSE_PARAMETERS_START(2, 2)
2332-
Z_PARAM_OBJECT_OF_CLASS(pv_res, odbc_result_ce)
2332+
Z_PARAM_OBJECT_OF_CLASS(pv_res, odbc_result_ce)
23332333
Z_PARAM_LONG(pv_num)
23342334
ZEND_PARSE_PARAMETERS_END();
23352335

@@ -2379,7 +2379,7 @@ PHP_FUNCTION(odbc_field_num)
23792379
zval *pv_res;
23802380

23812381
ZEND_PARSE_PARAMETERS_START(2, 2)
2382-
Z_PARAM_OBJECT_OF_CLASS(pv_res, odbc_result_ce)
2382+
Z_PARAM_OBJECT_OF_CLASS(pv_res, odbc_result_ce)
23832383
Z_PARAM_STRING(fname, fname_len)
23842384
ZEND_PARSE_PARAMETERS_END();
23852385

@@ -2415,7 +2415,7 @@ PHP_FUNCTION(odbc_autocommit)
24152415
bool pv_onoff_is_null = true;
24162416

24172417
ZEND_PARSE_PARAMETERS_START(1, 2)
2418-
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
2418+
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
24192419
Z_PARAM_OPTIONAL
24202420
Z_PARAM_BOOL_OR_NULL(pv_onoff, pv_onoff_is_null)
24212421
ZEND_PARSE_PARAMETERS_END();
@@ -2466,7 +2466,7 @@ static void php_odbc_lasterror(INTERNAL_FUNCTION_PARAMETERS, int mode)
24662466

24672467
ZEND_PARSE_PARAMETERS_START(0, 1)
24682468
Z_PARAM_OPTIONAL
2469-
Z_PARAM_OBJECT_OF_CLASS(pv_handle, odbc_connection_ce)
2469+
Z_PARAM_OBJECT_OF_CLASS(pv_handle, odbc_connection_ce)
24702470
ZEND_PARSE_PARAMETERS_END();
24712471

24722472
if (pv_handle) {
@@ -2520,7 +2520,7 @@ PHP_FUNCTION(odbc_setoption)
25202520
zend_long pv_which, pv_opt, pv_val;
25212521

25222522
ZEND_PARSE_PARAMETERS_START(4, 4)
2523-
Z_PARAM_OBJECT(pv_handle)
2523+
Z_PARAM_OBJECT(pv_handle)
25242524
Z_PARAM_LONG(pv_which)
25252525
Z_PARAM_LONG(pv_opt)
25262526
Z_PARAM_LONG(pv_val)
@@ -2583,7 +2583,7 @@ PHP_FUNCTION(odbc_tables)
25832583
RETCODE rc;
25842584

25852585
ZEND_PARSE_PARAMETERS_START(1, 5)
2586-
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
2586+
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
25872587
Z_PARAM_OPTIONAL
25882588
Z_PARAM_STRING_OR_NULL(cat, cat_len)
25892589
Z_PARAM_STRING_OR_NULL(schema, schema_len)
@@ -2652,7 +2652,7 @@ PHP_FUNCTION(odbc_columns)
26522652
RETCODE rc;
26532653

26542654
ZEND_PARSE_PARAMETERS_START(1, 5)
2655-
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
2655+
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
26562656
Z_PARAM_OPTIONAL
26572657
Z_PARAM_STRING_OR_NULL(cat, cat_len)
26582658
Z_PARAM_STRING_OR_NULL(schema, schema_len)
@@ -2723,7 +2723,7 @@ PHP_FUNCTION(odbc_columnprivileges)
27232723
RETCODE rc;
27242724

27252725
ZEND_PARSE_PARAMETERS_START(5, 5)
2726-
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
2726+
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
27272727
Z_PARAM_STRING_OR_NULL(cat, cat_len)
27282728
Z_PARAM_STRING(schema, schema_len)
27292729
Z_PARAM_STRING(table, table_len)
@@ -2786,7 +2786,7 @@ PHP_FUNCTION(odbc_foreignkeys)
27862786
RETCODE rc;
27872787

27882788
ZEND_PARSE_PARAMETERS_START(7, 7)
2789-
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
2789+
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
27902790
Z_PARAM_STRING_OR_NULL(pcat, pcat_len)
27912791
Z_PARAM_STRING(pschema, pschema_len)
27922792
Z_PARAM_STRING(ptable, ptable_len)
@@ -2865,7 +2865,7 @@ PHP_FUNCTION(odbc_gettypeinfo)
28652865
SQLSMALLINT data_type;
28662866

28672867
ZEND_PARSE_PARAMETERS_START(1, 2)
2868-
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
2868+
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
28692869
Z_PARAM_OPTIONAL
28702870
Z_PARAM_LONG(pv_data_type)
28712871
ZEND_PARSE_PARAMETERS_END();
@@ -2924,7 +2924,7 @@ PHP_FUNCTION(odbc_primarykeys)
29242924
RETCODE rc;
29252925

29262926
ZEND_PARSE_PARAMETERS_START(4, 4)
2927-
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
2927+
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
29282928
Z_PARAM_STRING_OR_NULL(cat, cat_len)
29292929
Z_PARAM_STRING(schema, schema_len)
29302930
Z_PARAM_STRING(table, table_len)
@@ -2985,7 +2985,7 @@ PHP_FUNCTION(odbc_procedurecolumns)
29852985
RETCODE rc;
29862986

29872987
ZEND_PARSE_PARAMETERS_START(1, 5)
2988-
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
2988+
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
29892989
Z_PARAM_STRING_OR_NULL(cat, cat_len)
29902990
Z_PARAM_STRING_OR_NULL(schema, schema_len)
29912991
Z_PARAM_STRING_OR_NULL(proc, proc_len)
@@ -3048,7 +3048,7 @@ PHP_FUNCTION(odbc_procedures)
30483048
RETCODE rc;
30493049

30503050
ZEND_PARSE_PARAMETERS_START(1, 4)
3051-
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
3051+
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
30523052
Z_PARAM_STRING_OR_NULL(cat, cat_len)
30533053
Z_PARAM_STRING_OR_NULL(schema, schema_len)
30543054
Z_PARAM_STRING_OR_NULL(proc, proc_len)
@@ -3111,7 +3111,7 @@ PHP_FUNCTION(odbc_specialcolumns)
31113111
RETCODE rc;
31123112

31133113
ZEND_PARSE_PARAMETERS_START(7, 7)
3114-
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
3114+
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
31153115
Z_PARAM_LONG(vtype)
31163116
Z_PARAM_STRING_OR_NULL(cat, cat_len)
31173117
Z_PARAM_STRING(schema, schema_len)
@@ -3183,7 +3183,7 @@ PHP_FUNCTION(odbc_statistics)
31833183
RETCODE rc;
31843184

31853185
ZEND_PARSE_PARAMETERS_START(6, 6)
3186-
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
3186+
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
31873187
Z_PARAM_STRING_OR_NULL(cat, cat_len)
31883188
Z_PARAM_STRING(schema, schema_len)
31893189
Z_PARAM_STRING(name, name_len)
@@ -3251,7 +3251,7 @@ PHP_FUNCTION(odbc_tableprivileges)
32513251
RETCODE rc;
32523252

32533253
ZEND_PARSE_PARAMETERS_START(4, 4)
3254-
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
3254+
Z_PARAM_OBJECT_OF_CLASS(pv_conn, odbc_connection_ce)
32553255
Z_PARAM_STRING_OR_NULL(cat, cat_len)
32563256
Z_PARAM_STRING(schema, schema_len)
32573257
Z_PARAM_STRING(table, table_len)

0 commit comments

Comments
 (0)