summaryrefslogtreecommitdiff
path: root/appl/cmd/archfs.b
diff options
context:
space:
mode:
Diffstat (limited to 'appl/cmd/archfs.b')
-rw-r--r--appl/cmd/archfs.b2
1 files changed, 1 insertions, 1 deletions
diff --git a/appl/cmd/archfs.b b/appl/cmd/archfs.b
index 11567731..af3b73b9 100644
--- a/appl/cmd/archfs.b
+++ b/appl/cmd/archfs.b
@@ -125,7 +125,7 @@ init(nil: ref Draw->Context, args: list of string)
fatal("can't create pipe");
pidch := chan of int;
spawn serve(p[1], pidch);
- pid := <- pidch;
+ <- pidch;
if(sys->mount(p[0], nil, mtpt, flags, nil) < 0)
fatal(sys->sprint("cannot mount archive on %s: %r", mtpt));
}