File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -275,7 +275,7 @@ static void char_ptr_dtor_p(zval *zv) /* {{{ */
275
275
pefree (Z_PTR_P (zv ), 1 );
276
276
} /* }}} */
277
277
278
- static char * get_last_error () /* {{{ */
278
+ static char * get_last_error (void ) /* {{{ */
279
279
{
280
280
return pestrdup (strerror (errno ), 1 );
281
281
} /* }}} */
@@ -1153,7 +1153,7 @@ static int php_cli_server_content_sender_pull(php_cli_server_content_sender *sen
1153
1153
} /* }}} */
1154
1154
1155
1155
#if HAVE_UNISTD_H
1156
- static int php_cli_is_output_tty () /* {{{ */
1156
+ static int php_cli_is_output_tty (void ) /* {{{ */
1157
1157
{
1158
1158
if (php_cli_output_is_tty == OUTPUT_NOT_CHECKED ) {
1159
1159
php_cli_output_is_tty = isatty (STDOUT_FILENO );
Original file line number Diff line number Diff line change @@ -717,7 +717,7 @@ void phpdbg_automatic_dequeue_free(phpdbg_watch_element *element) {
717
717
phpdbg_free_watch_element_tree (element );
718
718
}
719
719
720
- void phpdbg_dequeue_elements_for_recreation () {
720
+ void phpdbg_dequeue_elements_for_recreation (void ) {
721
721
phpdbg_watch_element * element ;
722
722
723
723
ZEND_HASH_FOREACH_PTR (& PHPDBG_G (watch_recreation ), element ) {
You can’t perform that action at this time.
0 commit comments