aboutsummaryrefslogtreecommitdiffstats
path: root/enc/euc_jp.c
diff options
context:
space:
mode:
Diffstat (limited to 'enc/euc_jp.c')
-rw-r--r--enc/euc_jp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/enc/euc_jp.c b/enc/euc_jp.c
index 3b339f9600..eb7777a8e5 100644
--- a/enc/euc_jp.c
+++ b/enc/euc_jp.c
@@ -290,7 +290,7 @@ property_name_to_ctype(OnigEncoding enc, UChar* p, UChar* end)
PROPERTY_LIST_INIT_CHECK;
- s = e = ALLOC_N(UChar, end-p+1);
+ s = e = ALLOCA_N(UChar, end-p+1);
for (; p < end; p++) {
*e++ = ONIGENC_ASCII_CODE_TO_LOWER_CASE(*p);
}