aboutsummaryrefslogtreecommitdiff
path: root/src/lj_str.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lj_str.c')
-rw-r--r--src/lj_str.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_str.c b/src/lj_str.c
index 62322b59..fec2d9b2 100644
--- a/src/lj_str.c
+++ b/src/lj_str.c
@@ -64,7 +64,7 @@ void lj_str_resize(lua_State *L, MSize newmask)
64 p = next; 64 p = next;
65 } 65 }
66 } 66 }
67 lj_mem_freevec(g, g->strhash, g->strmask+1, GCstr *); 67 lj_mem_freevec(g, g->strhash, g->strmask+1, GCRef);
68 g->strmask = newmask; 68 g->strmask = newmask;
69 g->strhash = newhash; 69 g->strhash = newhash;
70} 70}