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/07/11 06:31:12 UTC

[lucy-commits] svn commit: r1145024 - /incubator/lucy/trunk/clownfish/src/CFCBindCore.c

Author: marvin
Date: Mon Jul 11 04:31:12 2011
New Revision: 1145024

URL: http://svn.apache.org/viewvc?rev=1145024&view=rev
Log:
Fix incorrect return type in static function.

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

Modified: incubator/lucy/trunk/clownfish/src/CFCBindCore.c
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/src/CFCBindCore.c?rev=1145024&r1=1145023&r2=1145024&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/src/CFCBindCore.c (original)
+++ incubator/lucy/trunk/clownfish/src/CFCBindCore.c Mon Jul 11 04:31:12 2011
@@ -39,12 +39,12 @@ struct CFCBindCore {
 /* Write the "parcel.h" header file, which contains common symbols needed by
  * all classes, plus typedefs for all class structs.
  */
-static char*
+static void
 S_write_parcel_h(CFCBindCore *self);
 
 /* Write the "parcel.c" file containing autogenerated implementation code.
  */
-static char*
+static void
 S_write_parcel_c(CFCBindCore *self);
 
 CFCBindCore*
@@ -111,7 +111,7 @@ CFCBindCore_write_all_modified(CFCBindCo
 /* Write the "parcel.h" header file, which contains common symbols needed by
  * all classes, plus typedefs for all class structs.
  */
-static char*
+static void
 S_write_parcel_h(CFCBindCore *self) {
     CFCHierarchy *hierarchy = self->hierarchy;
 
@@ -234,7 +234,7 @@ S_write_parcel_h(CFCBindCore *self) {
     FREEMEM(file_content);
 }
 
-static char*
+static void
 S_write_parcel_c(CFCBindCore *self) {
     CFCHierarchy *hierarchy = self->hierarchy;