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 2009/12/01 21:26:56 UTC

svn commit: r885911 - /lucene/lucy/trunk/charmonizer/src/Charmonizer/Core/Compiler.c

Author: marvin
Date: Tue Dec  1 20:26:56 2009
New Revision: 885911

URL: http://svn.apache.org/viewvc?rev=885911&view=rev
Log:
Kill off some "unused variable" compiler warnings.

Modified:
    lucene/lucy/trunk/charmonizer/src/Charmonizer/Core/Compiler.c

Modified: lucene/lucy/trunk/charmonizer/src/Charmonizer/Core/Compiler.c
URL: http://svn.apache.org/viewvc/lucene/lucy/trunk/charmonizer/src/Charmonizer/Core/Compiler.c?rev=885911&r1=885910&r2=885911&view=diff
==============================================================================
--- lucene/lucy/trunk/charmonizer/src/Charmonizer/Core/Compiler.c (original)
+++ lucene/lucy/trunk/charmonizer/src/Charmonizer/Core/Compiler.c Tue Dec  1 20:26:56 2009
@@ -118,6 +118,7 @@
                                + 200;
     char *command = malloc(command_max_size);
     chaz_bool_t result;
+    (void)code_len; /* Unused. */
     
     /* Prepare the compiler command. */
     if (Util_verbosity < 2 && chaz_ModHand_charm_run_available) {
@@ -168,6 +169,7 @@
                                + 200;
     char *command = malloc(command_max_size);
     chaz_bool_t result;
+    (void)code_len; /* Unused. */
     
     /* Prepare the compiler command. */
     if (Util_verbosity < 2 && chaz_ModHand_charm_run_available) {