mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-02-10 11:58:36 -05: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,9 +93,9 @@ 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