Skip to content
This repository was archived by the owner on Jun 9, 2018. It is now read-only.

Commit 5b96a08

Browse files
committed
s/key_append/Parrot_key_append/
s/key_new_cstring/Parrot_key_new_cstring/
1 parent 86a4ba4 commit 5b96a08

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dynext/pmc/wmlsbytecode.pmc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,9 @@ static int _load_header(Interp *interp)
164164

165165
static PMC * new_wmls(Interp *interp, const char *name)
166166
{
167-
PMC * key = key_append(interp,
168-
key_new_cstring(interp, "Wmls"),
169-
key_new_cstring(interp, name));
167+
PMC * key = Parrot_key_append(interp,
168+
Parrot_key_new_cstring(interp, "Wmls"),
169+
Parrot_key_new_cstring(interp, name));
170170
PMC * class_object = Parrot_oo_get_class(interp, key);
171171
if (PMC_IS_NULL(class_object))
172172
Parrot_ex_throw_from_c_args(interp, NULL, EXCEPTION_ILL_INHERIT,

0 commit comments

Comments
 (0)