Repository: lucy Updated Branches: refs/heads/master 38fea560f -> 64c58184d
Convert call to Obj_Mimic Project: http://git-wip-us.apache.org/repos/asf/lucy/repo Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/e3c9fa8b Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/e3c9fa8b Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/e3c9fa8b Branch: refs/heads/master Commit: e3c9fa8baa23c077cac7f59e99de41e8f26c89d7 Parents: 38fea56 Author: Nick Wellnhofer <[email protected]> Authored: Fri May 22 15:32:43 2015 +0200 Committer: Nick Wellnhofer <[email protected]> Committed: Sat May 23 15:45:08 2015 +0200 ---------------------------------------------------------------------- core/Lucy/Plan/TextType.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucy/blob/e3c9fa8b/core/Lucy/Plan/TextType.c ---------------------------------------------------------------------- diff --git a/core/Lucy/Plan/TextType.c b/core/Lucy/Plan/TextType.c index 4552e1e..3553641 100644 --- a/core/Lucy/Plan/TextType.c +++ b/core/Lucy/Plan/TextType.c @@ -65,7 +65,7 @@ void TextTermStepper_Set_Value_IMP(TextTermStepper *self, Obj *value) { TextTermStepperIVARS *const ivars = TextTermStepper_IVARS(self); CERTIFY(value, STRING); - Obj_Mimic(ivars->value, value); + CB_Mimic((CharBuf*)ivars->value, value); // Invalidate string. DECREF(ivars->string); ivars->string = NULL;
