diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2021-02-01 09:46:39 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2021-02-01 09:46:39 +0100 |
commit | 800685e2f948f03d2f13152a965832c766c1a38c (patch) | |
tree | 0c440db5cc847087533feaddc80adfdf7d20b42d /ext/soap/php_sdl.c | |
parent | f2994786f3d5f01944202d8757bf3f6ff92a8261 (diff) | |
parent | c72957b409c857d4039c4d599b03206f0daa00ab (diff) | |
download | php-git-800685e2f948f03d2f13152a965832c766c1a38c.tar.gz |
Merge branch 'PHP-8.0'
* PHP-8.0:
Fix build
crc32 mac build fix
Diffstat (limited to 'ext/soap/php_sdl.c')
-rw-r--r-- | ext/soap/php_sdl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/soap/php_sdl.c b/ext/soap/php_sdl.c index 143e406916..bcc72cce8a 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) { |