suppress warning in gcd()

SVN-Revision: 8609
lede-17.01
Nicolas Thill 2007-09-04 13:23:21 +00:00
parent f0715bbde9
commit 3abffae7fb
1 changed files with 2 additions and 2 deletions

View File

@ -103,12 +103,12 @@ static int gcd(int a, int b)
{
int c;
if ( a < b) {
if (a < b) {
c = a;
a = b;
b = c;
}
while (c = (a % b)) {
while ((c = (a % b))) {
a = b;
b = c;
}