Skip to content

Commit 71aae5a

Browse files
committed
Merge branch 'PHP-8.2' into PHP-8.3
* PHP-8.2: Fix GH-13727: Building with -Werror=strict-prototypes (#14029)
2 parents 5899cab + 44775b7 commit 71aae5a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

NEWS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ PHP NEWS
1616
. Fixed bug GH-14013 (Erroneous dnl appended in configure). (Peter Kokot)
1717
. Fixed bug GH-10232 (If autoloading occurs during constant resolution
1818
filename and lineno are identified incorrectly). (ranvis)
19+
. Fixed bug GH-13727 (Missing void keyword). (Peter Kokot)
1920

2021
- Fibers:
2122
. Fixed bug GH-13903 (ASAN false positive underflow when executing copy()).

build/libtool.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4636,7 +4636,7 @@ for ac_symprfx in "" "_"; do
46364636
extern "C" {
46374637
#endif
46384638
char nm_test_var;
4639-
void nm_test_func(){}
4639+
void nm_test_func(void){}
46404640
#ifdef __cplusplus
46414641
}
46424642
#endif

0 commit comments

Comments
 (0)