billiob pushed a commit to branch master.

http://git.enlightenment.org/apps/terminology.git/commit/?id=3afe93fd71f4df7a6f64eb7286399496eb9be737

commit 3afe93fd71f4df7a6f64eb7286399496eb9be737
Author: Boris Faure <bill...@gmail.com>
Date:   Tue Jul 15 12:32:58 2014 +0200

    lz4: fix shadow variables, again…
---
 src/bin/lz4/lz4.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/bin/lz4/lz4.c b/src/bin/lz4/lz4.c
index 482a8ed..b30d445 100644
--- a/src/bin/lz4/lz4.c
+++ b/src/bin/lz4/lz4.c
@@ -986,9 +986,9 @@ FORCE_INLINE int LZ4_decompress_generic(
                 copySize = length+MINMATCH - copySize;
                 if (copySize > (size_t)((char*)op-dest))   /* overlap */
                 {
-                    BYTE* const cpy = op + copySize;
-                    const BYTE* ref = (BYTE*)dest;
-                    while (op < cpy) *op++ = *ref++;
+                    BYTE* const cpy2 = op + copySize;
+                    const BYTE* ref2 = (BYTE*)dest;
+                    while (op < cpy2) *op++ = *ref2++;
                 }
                 else
                 {

-- 


Reply via email to