From: Sean Bright Date: Sun, 20 Jan 2002 05:02:52 +0000 (+0000) Subject: Forgot to remove the return from a void function X-Git-Tag: PRE_ISSET_PATCH~146 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=16344cc34ef6e973d68abec3ea10c8e662a3e6df;p=php Forgot to remove the return from a void function --- 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); } /* }}} */