Skip to content
Snippets Groups Projects
Commit 3abffae7 authored by Nicolas Thill's avatar Nicolas Thill
Browse files

suppress warning in gcd()

SVN-Revision: 8609
parent f0715bbd
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment