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 2011/02/05 20:14:36 UTC

[lucy-commits] svn commit: r1067486 - /incubator/lucy/trunk/clownfish/lib/Clownfish.xs

Author: marvin
Date: Sat Feb  5 19:14:35 2011
New Revision: 1067486

URL: http://svn.apache.org/viewvc?rev=1067486&view=rev
Log:
Fix type error which caused the truncation of a constant value.

Modified:
    incubator/lucy/trunk/clownfish/lib/Clownfish.xs

Modified: incubator/lucy/trunk/clownfish/lib/Clownfish.xs
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/lib/Clownfish.xs?rev=1067486&r1=1067485&r2=1067486&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/lib/Clownfish.xs (original)
+++ incubator/lucy/trunk/clownfish/lib/Clownfish.xs Sat Feb  5 19:14:35 2011
@@ -448,13 +448,13 @@ DESTROY(self)
 PPCODE:
     CFCType_destroy(self);
 
-bool
+unsigned
 CONST(...)
 CODE:
     RETVAL = CFCTYPE_CONST;
 OUTPUT: RETVAL
 
-bool
+unsigned
 NULLABLE(...)
 CODE:
     RETVAL = CFCTYPE_NULLABLE;