diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-06-23 19:03:54 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-06-23 19:03:54 +0000 |
commit | b216e990a1f3203118d6322cd05f884b19617ac6 (patch) | |
tree | 86b36eaa83190dd9b18357ba2c6ff0e36e073f25 /libfshelp | |
parent | 72644a7185a95d07ff7fa4d01aa14ed13d28bb35 (diff) |
(fshelp_fetch_root): Parenthesize assert test correctly.
Diffstat (limited to 'libfshelp')
-rw-r--r-- | libfshelp/fetch-root.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libfshelp/fetch-root.c b/libfshelp/fetch-root.c index 7686b77d..f865a06f 100644 --- a/libfshelp/fetch-root.c +++ b/libfshelp/fetch-root.c @@ -39,7 +39,7 @@ fshelp_fetch_root (struct transbox *box, void *cookie, start_over: if (box->active != MACH_PORT_NULL) - assert (box->flags & TRANSBOX_STARTING == 0); + assert ((box->flags & TRANSBOX_STARTING) == 0); else { mach_port_t underlying; |