aboutsummaryrefslogtreecommitdiffstats
path: root/enc/shift_jis.c
diff options
context:
space:
mode:
Diffstat (limited to 'enc/shift_jis.c')
-rw-r--r--enc/shift_jis.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/enc/shift_jis.c b/enc/shift_jis.c
index cac4cf7751..ee726cf71a 100644
--- a/enc/shift_jis.c
+++ b/enc/shift_jis.c
@@ -299,7 +299,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);
}