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/10/12 20:48:41 UTC

svn commit: r824456 - /lucene/lucy/trunk/core/Lucy/Object/CharBuf.c

Author: marvin
Date: Mon Oct 12 18:48:40 2009
New Revision: 824456

URL: http://svn.apache.org/viewvc?rev=824456&view=rev
Log:
Fix incorrect sign for temp value in CharBuf_VCatF.

Modified:
    lucene/lucy/trunk/core/Lucy/Object/CharBuf.c

Modified: lucene/lucy/trunk/core/Lucy/Object/CharBuf.c
URL: http://svn.apache.org/viewvc/lucene/lucy/trunk/core/Lucy/Object/CharBuf.c?rev=824456&r1=824455&r2=824456&view=diff
==============================================================================
--- lucene/lucy/trunk/core/Lucy/Object/CharBuf.c (original)
+++ lucene/lucy/trunk/core/Lucy/Object/CharBuf.c Mon Oct 12 18:48:40 2009
@@ -245,7 +245,7 @@
                 break;
 
                 case 'i': {
-                    u64_t val = 0;
+                    i64_t val = 0;
                     size_t size;
 
                     if (pattern[1] == '8') {