mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Replace an assignment with intended equality test
This corrects a latent error that has been present since the inception of this module.
This commit is contained in:
parent
267ec64ae8
commit
967403996a
@ -196,7 +196,7 @@ tarjan (int nv, const int *ia, const int *ja, int *vert, int *comp,
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
assert(status[child] = DONE);
|
assert(status[child] == DONE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user