mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-04-25 01:19:20 -04:00
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:
parent
6fecac5f7b
commit
5bc6558567
@ -93,7 +93,7 @@ again:
|
|||||||
idx = (idx + 1) % 4;
|
idx = (idx + 1) % 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
idx = idx;
|
//idx = idx;
|
||||||
|
|
||||||
return buf ;
|
return buf ;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user