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 2015/12/09 17:46:48 UTC

[2/2] lucy git commit: Prepare for Blob_compare removal

Prepare for Blob_compare removal


Project: http://git-wip-us.apache.org/repos/asf/lucy/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/d59ed7b2
Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/d59ed7b2
Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/d59ed7b2

Branch: refs/heads/master
Commit: d59ed7b2a393646cddc8726d71191d4f0f289185
Parents: 123c48e
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Wed Dec 9 15:16:55 2015 +0100
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Wed Dec 9 17:46:05 2015 +0100

----------------------------------------------------------------------
 core/Lucy/Util/BlobSortEx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/d59ed7b2/core/Lucy/Util/BlobSortEx.c
----------------------------------------------------------------------
diff --git a/core/Lucy/Util/BlobSortEx.c b/core/Lucy/Util/BlobSortEx.c
index 3126c1d..351a8a1 100644
--- a/core/Lucy/Util/BlobSortEx.c
+++ b/core/Lucy/Util/BlobSortEx.c
@@ -167,7 +167,7 @@ BlobSortEx_Flip_IMP(BlobSortEx *self) {
 int
 BlobSortEx_Compare_IMP(BlobSortEx *self, Obj **ptr_a, Obj **ptr_b) {
     UNUSED_VAR(self);
-    return Blob_compare((Blob**)ptr_a, (Blob**)ptr_b);
+    return Obj_Compare_To(*ptr_a, *ptr_b);
 }
 
 Vector*