Skip to content

Commit 834e185

Browse files
committed
Fix [-Wstrict-prototypes] in main/main.c file
1 parent 509b6a9 commit 834e185

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
@@ -1163,7 +1163,7 @@ PHPAPI void php_html_puts(const char *str, size_t size)
11631163
}
11641164
/* }}} */
11651165

1166-
static void clear_last_error() {
1166+
static void clear_last_error(void) {
11671167
if (PG(last_error_message)) {
11681168
zend_string_release(PG(last_error_message));
11691169
PG(last_error_message) = NULL;

0 commit comments

Comments
 (0)