summaryrefslogtreecommitdiff
path: root/textproc/sphinxsearch/files/patch-src_sphinx.h
blob: ce7db8444ee9ee1eab51e746dd65783784afe5a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- src/sphinx.h.orig	2018-02-03 10:16:36 UTC
+++ src/sphinx.h
@@ -433,7 +433,7 @@ class CSphLowercaser (public)
 	{
 		if ( iCode<0 || iCode>=MAX_CODE )
 			return iCode;
-		register int * pChunk = m_pChunk [ iCode >> CHUNK_BITS ];
+		int * pChunk = m_pChunk [ iCode >> CHUNK_BITS ];
 		if ( pChunk )
 			return pChunk [ iCode & CHUNK_MASK ];
 		return 0;