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:
Bård Skaflestad 2013-02-01 16:30:45 +01:00
parent 267ec64ae8
commit 967403996a

View File

@ -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);
} }
} }
} }