Skip to content

Commit

Permalink
Correct return type between declaration and definition
Browse files Browse the repository at this point in the history
  • Loading branch information
derickr committed Jul 26, 2023
1 parent c9f04b5 commit 2ec89ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xdebug.c
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ ZEND_DLEXPORT int xdebug_zend_startup(zend_extension *extension)
return zend_startup_module(&xdebug_module_entry);
}

static int xdebug_post_startup(void)
static zend_result xdebug_post_startup(void)
{
if (xdebug_orig_post_startup_cb) {
int (*cb)(void) = xdebug_orig_post_startup_cb;
Expand Down

0 comments on commit 2ec89ac

Please sign in to comment.