summaryrefslogtreecommitdiff
path: root/textproc/libclucene/patches/patch-src_CLucene_util_Arrays.h
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/libclucene/patches/patch-src_CLucene_util_Arrays.h')
-rw-r--r--textproc/libclucene/patches/patch-src_CLucene_util_Arrays.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/textproc/libclucene/patches/patch-src_CLucene_util_Arrays.h b/textproc/libclucene/patches/patch-src_CLucene_util_Arrays.h
deleted file mode 100644
index c59b78ab4ef..00000000000
--- a/textproc/libclucene/patches/patch-src_CLucene_util_Arrays.h
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-src_CLucene_util_Arrays.h,v 1.1 2012/11/16 01:07:27 joerg Exp $
-
---- src/CLucene/util/Arrays.h.orig 2012-11-13 16:36:53.000000000 +0000
-+++ src/CLucene/util/Arrays.h
-@@ -151,7 +151,7 @@ CL_NS_DEF(util)
-
- _itr1 itr1 = val1->begin();
- _itr2 itr2 = val2->begin();
-- while ( --size >= 0 ){
-+ while ( size-- > 0 ){
- if ( !comp(*itr1,*itr2) )
- return false;
- itr1++;