Skip to content

Commit f977699

Browse files
committed
Fix [-Wstrict-prototypes] in main/main.c file
1 parent 64585eb commit f977699

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
@@ -1122,7 +1122,7 @@ PHPAPI void php_html_puts(const char *str, size_t size)
11221122
}
11231123
/* }}} */
11241124

1125-
static void clear_last_error() {
1125+
static void clear_last_error(void) {
11261126
if (PG(last_error_message)) {
11271127
zend_string_release(PG(last_error_message));
11281128
PG(last_error_message) = NULL;

0 commit comments

Comments
 (0)