Skip to content

Commit 2b30b22

Browse files
committed
Autotools: Quote PHP_CHECK_SIZEOF macro arguments
[skip ci]
1 parent 0122be5 commit 2b30b22

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

configure.ac

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -461,9 +461,9 @@ AC_CHECK_TYPES([socklen_t], [], [], [
461461
])
462462

463463
dnl These are defined elsewhere than stdio.h.
464-
PHP_CHECK_SIZEOF(intmax_t, 0)
465-
PHP_CHECK_SIZEOF(ssize_t, 8)
466-
PHP_CHECK_SIZEOF(ptrdiff_t, 8)
464+
PHP_CHECK_SIZEOF([intmax_t], [0])
465+
PHP_CHECK_SIZEOF([ssize_t], [8])
466+
PHP_CHECK_SIZEOF([ptrdiff_t], [8])
467467

468468
dnl Check stdint types (must be after header check).
469469
PHP_CHECK_STDINT_TYPES

0 commit comments

Comments
 (0)