diff options
author | Dan Kalowsky <kalowsky@php.net> | 2002-08-16 16:56:55 +0000 |
---|---|---|
committer | Dan Kalowsky <kalowsky@php.net> | 2002-08-16 16:56:55 +0000 |
commit | 26e044a1438587b946a07a1839d663a16d836d42 (patch) | |
tree | e72144610cc440f82d50ab6d0a7eec8e5d500aa2 /ext/imap/php_imap.c | |
parent | f7096fb8fcb8a600c29762d3d76563da1c6190ca (diff) | |
download | php-git-26e044a1438587b946a07a1839d663a16d836d42.tar.gz |
Silence a compiler warning, and returns the SUCCESS value on PHP_MINIT
Diffstat (limited to 'ext/imap/php_imap.c')
-rw-r--r-- | ext/imap/php_imap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index 0298e3e2be..49e058396d 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -584,6 +584,7 @@ PHP_MINIT_FUNCTION(imap) le_imap = zend_register_list_destructors_ex(mail_close_it, NULL, "imap", module_number); + return SUCCESS; } /* }}} */ |