diff options
Diffstat (limited to 'src/cmd/plumb')
-rw-r--r-- | src/cmd/plumb/fsys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/plumb/fsys.c b/src/cmd/plumb/fsys.c index 4ae99afd..8b9188be 100644 --- a/src/cmd/plumb/fsys.c +++ b/src/cmd/plumb/fsys.c @@ -196,7 +196,7 @@ startfsys(void) error("can't create pipe: %r"); /* 0 will be server end, 1 will be client end */ srvfd = p[0]; - if(post9pservice(p[1], "plumb") < 0) + if(post9pservice(p[1], "plumb", nil) < 0) sysfatal("post9pservice plumb: %r"); close(p[1]); proccreate(fsysproc, nil, Stack); |