suppress warning in gcd()

SVN-Revision: 8609
This commit is contained in:
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

@ -108,7 +108,7 @@ static int gcd(int a, int b)
a = b;
b = c;
}
while (c = (a % b)) {
while ((c = (a % b))) {
a = b;
b = c;
}