diff options
author | Anatol Belski <ab@php.net> | 2014-08-26 11:23:25 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-08-26 11:26:53 +0200 |
commit | 202e8db1dc8e1203039327d81ce6fd82c1c2d909 (patch) | |
tree | 05868887a0786140e5a867333b5e374f6a34fe51 /ext/odbc/php_odbc.c | |
parent | 7cbbb371270fe369eb30a570df95bbdcf42a82e4 (diff) | |
download | php-git-202e8db1dc8e1203039327d81ce6fd82c1c2d909.tar.gz |
fixed several long vs zend_long casts
Diffstat (limited to 'ext/odbc/php_odbc.c')
-rw-r--r-- | ext/odbc/php_odbc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/odbc/php_odbc.c b/ext/odbc/php_odbc.c index 415588ff0b..9c4e11f3ae 100644 --- a/ext/odbc/php_odbc.c +++ b/ext/odbc/php_odbc.c @@ -2928,7 +2928,7 @@ PHP_FUNCTION(odbc_autocommit) odbc_sql_error(conn, SQL_NULL_HSTMT, "Get commit status"); RETURN_FALSE; } - RETVAL_LONG((long)status); + RETVAL_LONG((zend_long)status); } } /* }}} */ |