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/01 18:47:29 UTC

[lucy-commits] [8/9] git commit: refs/heads/ivars-wip1 - 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/edf18e49
Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/edf18e49
Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/edf18e49

Branch: refs/heads/ivars-wip1
Commit: edf18e49be1459010f09cc5502bb88697885832e
Parents: d3edeee
Author: Marvin Humphrey <ma...@rectangular.com>
Authored: Mon Jul 1 08:41:38 2013 -0700
Committer: Marvin Humphrey <ma...@rectangular.com>
Committed: Mon Jul 1 08:46:22 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/edf18e49/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"