You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2013/07/17 16:12:39 UTC

[lucy-commits] [19/34] git commit: refs/heads/master - Fix prefix capitalization bug.

Fix prefix capitalization bug.


Project: http://git-wip-us.apache.org/repos/asf/lucy/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/ff0ec8d5
Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/ff0ec8d5
Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/ff0ec8d5

Branch: refs/heads/master
Commit: ff0ec8d5ce189d204e015772c30994bd73457d5d
Parents: 25f4f65
Author: Marvin Humphrey <ma...@rectangular.com>
Authored: Mon Jul 1 08:41:38 2013 -0700
Committer: Marvin Humphrey <ma...@rectangular.com>
Committed: Tue Jul 16 16:08:43 2013 -0700

----------------------------------------------------------------------
 clownfish/compiler/src/CFCBindClass.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/ff0ec8d5/clownfish/compiler/src/CFCBindClass.c
----------------------------------------------------------------------
diff --git a/clownfish/compiler/src/CFCBindClass.c b/clownfish/compiler/src/CFCBindClass.c
index a1b3ac6..33b4d71 100644
--- a/clownfish/compiler/src/CFCBindClass.c
+++ b/clownfish/compiler/src/CFCBindClass.c
@@ -156,7 +156,7 @@ S_ivars_hack(CFCBindClass *self) {
     const char *full_struct = CFCClass_full_struct_sym(self->client);
     const char *full_ivars  = CFCClass_full_ivars_name(self->client);
     const char *short_ivars = CFCClass_short_ivars_name(self->client);
-    const char *prefix      = CFCClass_get_PREFIX(self->client);
+    const char *prefix      = CFCClass_get_prefix(self->client);
     const char *class_cnick = CFCClass_get_cnick(self->client);
     char pattern[] =
         "typedef struct %s %s;\n"