diff options
author | George Peter Banyard <girgias@php.net> | 2020-05-12 17:59:17 +0200 |
---|---|---|
committer | George Peter Banyard <girgias@php.net> | 2020-05-16 15:31:20 +0200 |
commit | 68164f40ce1909208cfa47fe9c2134718bd780a5 (patch) | |
tree | 727778d84caa74cb05ffcd029fedee804d256797 /ext/mbstring/php_unicode.h | |
parent | c19887496e9a3d3516368aa3cd8219e48e4fdca4 (diff) | |
download | php-git-68164f40ce1909208cfa47fe9c2134718bd780a5.tar.gz |
Fix [-Wundef] warning in MBString extension
Diffstat (limited to 'ext/mbstring/php_unicode.h')
-rw-r--r-- | ext/mbstring/php_unicode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mbstring/php_unicode.h b/ext/mbstring/php_unicode.h index 2cd6dd9539..26d0979ca4 100644 --- a/ext/mbstring/php_unicode.h +++ b/ext/mbstring/php_unicode.h @@ -31,7 +31,7 @@ #ifndef PHP_UNICODE_H #define PHP_UNICODE_H -#if HAVE_MBSTRING +#ifdef HAVE_MBSTRING #define UC_MN 0 /* Mark, Non-Spacing */ #define UC_MC 1 /* Mark, Spacing Combining */ |