diff options
| author | Christopher Jones <sixd@php.net> | 2013-08-20 10:33:00 -0700 |
|---|---|---|
| committer | Christopher Jones <sixd@php.net> | 2013-08-20 10:33:00 -0700 |
| commit | b455ba971c3758a9314e3bf7d56b03264d889b60 (patch) | |
| tree | bacb457f1e13ef49d2e42045c6108a6917d95557 /ext/pdo_odbc/odbc_driver.c | |
| parent | 72d1ec883e73cfa5efc8e20314de2677440e00e7 (diff) | |
| download | php-git-b455ba971c3758a9314e3bf7d56b03264d889b60.tar.gz | |
Remove some compilation warnings:
'unused variable' and
'enumeration value not handled in switch'
Diffstat (limited to 'ext/pdo_odbc/odbc_driver.c')
| -rw-r--r-- | ext/pdo_odbc/odbc_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_odbc/odbc_driver.c b/ext/pdo_odbc/odbc_driver.c index 33163688eb..f7f3ef34ed 100644 --- a/ext/pdo_odbc/odbc_driver.c +++ b/ext/pdo_odbc/odbc_driver.c @@ -263,7 +263,7 @@ out: static int odbc_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen, enum pdo_param_type param_type TSRMLS_DC) { - pdo_odbc_db_handle *H = (pdo_odbc_db_handle *)dbh->driver_data; + /* pdo_odbc_db_handle *H = (pdo_odbc_db_handle *)dbh->driver_data; */ /* TODO: figure it out */ return 0; } |
