From c6becb356f6930ebc35fe050f521df246eda2cf7 Mon Sep 17 00:00:00 2001 From: "hyunghwan.chung" Date: Mon, 9 Apr 2018 02:16:50 +0000 Subject: [PATCH] changed mod/ffi.c for some function name changes --- moo/mod/ffi.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/moo/mod/ffi.c b/moo/mod/ffi.c index 9b80d82..33b9579 100644 --- a/moo/mod/ffi.c +++ b/moo/mod/ffi.c @@ -406,9 +406,9 @@ static moo_pfrc_t pf_call (moo_t* moo, moo_ooi_t nargs) r = dcCallPointer (ffi->dc, f); #if defined(MOO_OOCH_IS_UCH) - s = moo_makestringwithbchars (moo, r, moo_countbcstr(r)); + s = moo_makestringwithbchars (moo, r, moo_count_bcstr(r)); #else - s = moo_makestring(moo, r, moo_countbcstr(r)); + s = moo_makestring(moo, r, moo_count_bcstr(r)); #endif if (!s) { @@ -428,9 +428,9 @@ static moo_pfrc_t pf_call (moo_t* moo, moo_ooi_t nargs) r = dcCallPointer (ffi->dc, f); #if defined(MOO_OOCH_IS_UCH) - s = moo_makestring(moo, r, moo_countucstr(r)); + s = moo_makestring(moo, r, moo_count_ucstr(r)); #else - s = moo_makestringwithuchars(moo, r, moo_countucstr(r)); + s = moo_makestringwithuchars(moo, r, moo_count_ucstr(r)); #endif if (!s) {