diff options
author | Sean Bright <elixer@php.net> | 2002-01-20 05:02:52 +0000 |
---|---|---|
committer | Sean Bright <elixer@php.net> | 2002-01-20 05:02:52 +0000 |
commit | 16344cc34ef6e973d68abec3ea10c8e662a3e6df (patch) | |
tree | 188abd757c2aef6b1bd0a2ebb2726bfb63f447bd | |
parent | cbedeea53ccc14fb19996ecbfb839b5075709dae (diff) | |
download | php-git-16344cc34ef6e973d68abec3ea10c8e662a3e6df.tar.gz |
Forgot to remove the return from a void function
-rw-r--r-- | ext/db/db.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/db/db.c b/ext/db/db.c index ac24379940..09e58e2825 100644 --- a/ext/db/db.c +++ b/ext/db/db.c @@ -463,8 +463,6 @@ void php_dbm_close(zend_rsrc_list_entry *rsrc TSRMLS_DC) if (info->filename) efree(info->filename); if (info->lockfn) efree(info->lockfn); efree(info); - - return(ret); } /* }}} */ |