diff options
author | Thies C. Arntzen <thies@php.net> | 2000-01-19 09:38:45 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 2000-01-19 09:38:45 +0000 |
commit | fb6a1b8b83e30ad07c765227f361f96179eb94e4 (patch) | |
tree | 3f195f443b02e59faf7a4c363a55b55a141bba05 /ext/oracle | |
parent | 4b006cb8b0ca3e947c8fc9ef757aea8e2907804d (diff) | |
download | php-git-fb6a1b8b83e30ad07c765227f361f96179eb94e4.tar.gz |
RETURN_NULL -> RETURN_NULL() // we don't want macros without an argumnet
Diffstat (limited to 'ext/oracle')
-rw-r--r-- | ext/oracle/oracle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/oracle/oracle.c b/ext/oracle/oracle.c index 1b132dd5ff..9ea20da242 100644 --- a/ext/oracle/oracle.c +++ b/ext/oracle/oracle.c @@ -1385,7 +1385,7 @@ PHP_FUNCTION(ora_getcolumn) type = column->dbtype; if (column->col_retcode == 1405) { - RETURN_NULL; + RETURN_NULL(); } if (column->col_retcode != 0 && column->col_retcode != 1406) { |