File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -743,7 +743,7 @@ this extension sharedto offer compatibility.
743
743
#define GET_SHELL_CB (cb ) \
744
744
do { \
745
745
(cb) = NULL; \
746
- cli_shell_callbacks_t *(*get_callbacks)(); \
746
+ cli_shell_callbacks_t *(*get_callbacks)(void ); \
747
747
get_callbacks = dlsym(RTLD_DEFAULT, "php_cli_get_shell_callbacks"); \
748
748
if (get_callbacks) { \
749
749
(cb) = get_callbacks(); \
Original file line number Diff line number Diff line change 28
28
#include <errno.h>
29
29
30
30
static int fpm_event_kqueue_init (int max );
31
- static int fpm_event_kqueue_clean ();
31
+ static int fpm_event_kqueue_clean (void );
32
32
static int fpm_event_kqueue_wait (struct fpm_event_queue_s * queue , unsigned long int timeout );
33
33
static int fpm_event_kqueue_add (struct fpm_event_s * ev );
34
34
static int fpm_event_kqueue_remove (struct fpm_event_s * ev );
You can’t perform that action at this time.
0 commit comments