summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2021-02-01 09:46:17 +0100
committerGabriel Caruso <carusogabriel34@gmail.com>2021-02-02 16:19:14 -0300
commit3424432ec93e48c0cbcf42b19a668c5a905c0e1f (patch)
tree3bd4b407ff59c76a7bc6f00d52723b3dae9cf085
parentf733ee195462201b2cbd1d17df2f752ee88771ba (diff)
downloadphp-git-PHP-8.0.2.tar.gz
Fix buildPHP-8.0.2
-rw-r--r--ext/soap/php_sdl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/soap/php_sdl.c b/ext/soap/php_sdl.c
index fd7d4ba8b4..16f68d701f 100644
--- a/ext/soap/php_sdl.c
+++ b/ext/soap/php_sdl.c
@@ -313,7 +313,7 @@ void sdl_restore_uri_credentials(sdlCtx *ctx)
ctx->context = NULL;
}
-#define SAFE_STR(a) ((a)?a:"")
+#define SAFE_STR(a) ((a)?((const char *)a):"")
static void load_wsdl_ex(zval *this_ptr, char *struri, sdlCtx *ctx, int include)
{