Browse Source

- No return value for void function

PHAR_1_2
Jani Taskinen 19 years ago
parent
commit
8e399854e6
  1. 2
      main/main.c

2
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) {

Loading…
Cancel
Save