Fix Clang warnings: explicitly assigning value to itself

/home/phenom/GIT/RetroShare/trunk/libretroshare/src/util/radix64.h:96:
warning: explicitly assigning value of variable of type 'int' to itself
[-Wself-assign]
                        idx = idx;
                        ~~~ ^ ~~~
This commit is contained in:
Phenom 2017-03-16 18:28:48 +01:00 committed by csoler
parent 6fecac5f7b
commit 5bc6558567

View File

@ -93,9 +93,9 @@ again:
idx = (idx + 1) % 4;
}
idx = idx;
//idx = idx;
return buf;
return buf ;
}
/****************