Skip to content

Commit 586b1ec

Browse files
committed
Fix [-Wstrict-prototypes] in main/main.c file
1 parent 88ff2f4 commit 586b1ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1129,7 +1129,7 @@ PHPAPI void php_html_puts(const char *str, size_t size)
11291129
}
11301130
/* }}} */
11311131

1132-
static void clear_last_error() {
1132+
static void clear_last_error(void) {
11331133
if (PG(last_error_message)) {
11341134
zend_string_release(PG(last_error_message));
11351135
PG(last_error_message) = NULL;

0 commit comments

Comments
 (0)