From: Jani Taskinen Date: Wed, 11 Jul 2007 10:23:47 +0000 (+0000) Subject: - No return value for void function X-Git-Tag: BEFORE_IMPORT_OF_MYSQLND~251 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8e399854e616970eb4f2814ec099156ff22d7eea;p=php - No return value for void function --- diff --git a/main/main.c b/main/main.c index 84f51288d0..c1c85f508b 100644 --- a/main/main.c +++ b/main/main.c @@ -454,7 +454,7 @@ PHPAPI void php_log_err(char *log_message TSRMLS_DC) } #endif if (PG(open_basedir) && php_check_open_basedir_ex(PG(error_log), 0 TSRMLS_CC)) { - return FAILURE; + return; } fd = VCWD_OPEN_MODE(PG(error_log), O_CREAT | O_APPEND | O_WRONLY, 0644); if (fd != -1) {