mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-11-27 11:00:37 -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
1 changed files with 2 additions and 2 deletions
|
|
@ -93,9 +93,9 @@ again:
|
||||||
idx = (idx + 1) % 4;
|
idx = (idx + 1) % 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
idx = idx;
|
//idx = idx;
|
||||||
|
|
||||||
return buf;
|
return buf ;
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************
|
/****************
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue