You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by nw...@apache.org on 2012/02/23 13:47:55 UTC

[lucy-commits] svn commit: r1292774 - /incubator/lucy/trunk/clownfish/src/CFCMethod.c

Author: nwellnhof
Date: Thu Feb 23 12:47:55 2012
New Revision: 1292774

URL: http://svn.apache.org/viewvc?rev=1292774&view=rev
Log:
Fix error message

Modified:
    incubator/lucy/trunk/clownfish/src/CFCMethod.c

Modified: incubator/lucy/trunk/clownfish/src/CFCMethod.c
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/src/CFCMethod.c?rev=1292774&r1=1292773&r2=1292774&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/src/CFCMethod.c (original)
+++ incubator/lucy/trunk/clownfish/src/CFCMethod.c Thu Feb 23 12:47:55 2012
@@ -124,7 +124,7 @@ CFCMethod_init(CFCMethod *self, CFCParce
     int mismatch = strcmp(wanted, specifier);
     FREEMEM(wanted);
     if (mismatch) {
-        CFCUtil_die("First arg type doesn't match class: '%s' '%s",
+        CFCUtil_die("First arg type doesn't match class: '%s' '%s'",
                     class_name, specifier);
     }