fix typo in the creation of OpenOption

Due to this typo we have to build a workaround for issue
hermitcore/libhermit-rs#191.

RustyHermit is a tier 3 platform and backward compatibility does
not have to be guaranteed.
This commit is contained in:
Stefan Lankes 2023-03-19 22:59:48 +01:00
parent 8826b68c62
commit 05542d9c67
1 changed files with 1 additions and 1 deletions

View File

@ -202,7 +202,7 @@ impl OpenOptions {
create: false,
create_new: false,
// system-specific
mode: 0x777,
mode: 0o777,
}
}