diff options
Diffstat (limited to 'appl/cmd')
| -rw-r--r-- | appl/cmd/logfile.b | 2 | ||||
| -rw-r--r-- | appl/cmd/ramfile.b | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/appl/cmd/logfile.b b/appl/cmd/logfile.b index 6a234d23..e971f7a6 100644 --- a/appl/cmd/logfile.b +++ b/appl/cmd/logfile.b @@ -63,7 +63,7 @@ init(nil: ref Draw->Context, argv: list of string) path := hd argv; (dir, f) := pathsplit(path); - if (sys->bind("#s", dir, Sys->MBEFORE|Sys->MCREATE) == -1) { + if (sys->bind("#s", dir, Sys->MBEFORE) == -1) { sys->fprint(stderr, "logfile: bind #s failed: %r\n"); return; } diff --git a/appl/cmd/ramfile.b b/appl/cmd/ramfile.b index 3451d7df..f30a2e58 100644 --- a/appl/cmd/ramfile.b +++ b/appl/cmd/ramfile.b @@ -32,7 +32,7 @@ init(nil: ref Draw->Context, argv: list of string) path := hd tl argv; (dir, f) := pathsplit(path); - if (sys->bind("#s", dir, Sys->MBEFORE|Sys->MCREATE) == -1) { + if (sys->bind("#s", dir, Sys->MBEFORE) == -1) { sys->fprint(stderr, "ramfile: %r\n"); return; } |
