We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dce590c commit e335244Copy full SHA for e335244
1 file changed
frankenphp.c
@@ -27,7 +27,7 @@
27
#include <pthread_np.h>
28
#endif
29
30
-#if PHP_VERSION_ID >= 85000
+#if PHP_VERSION_ID >= 80500
31
#include <sapi/cli/cli.h>
32
#else
33
#include "emulate_php_cli.h"
@@ -1031,8 +1031,10 @@ typedef struct {
1031
1032
static void *execute_script_cli(void *arg) {
1033
cli_exec_args_t *args = (cli_exec_args_t *)arg;
1034
+ volatile int v = PHP_VERSION_ID;
1035
+ (void)v;
1036
1037
1038
return (void *)(intptr_t)do_php_cli(args->argc, args->argv);
1039
1040
return (void *)(intptr_t)emulate_script_cli(args);
0 commit comments