diff options
Diffstat (limited to 'src/shared/barrier.c')
-rw-r--r-- | src/shared/barrier.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/barrier.c b/src/shared/barrier.c index ec121d7403..a0326ac697 100644 --- a/src/shared/barrier.c +++ b/src/shared/barrier.c @@ -175,7 +175,7 @@ void barrier_set_role(Barrier *b, unsigned int role) { assert(b); assert(role == BARRIER_PARENT || role == BARRIER_CHILD); /* make sure this is only called once */ - assert(b->pipe[1] >= 0 && b->pipe[1] >= 0); + assert(b->pipe[0] >= 0 && b->pipe[1] >= 0); if (role == BARRIER_PARENT) b->pipe[1] = safe_close(b->pipe[1]); |