os: fix Node_rwx::rwx

Fixes #3658.
This commit is contained in:
Josef Söntgen 2020-01-28 15:02:33 +01:00 committed by Christian Helmuth
parent 3995d2f4a2
commit 6addd6cf1e
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ namespace Vfs {
.executable = true }; }
static Node_rwx rwx() { return { .readable = true,
.writeable = false,
.writeable = true,
.executable = true }; }
};