commit e8eb92b08159d244a65f023259d3792813808419
parent be15c6c152e56359ee52e0bc507d0328f8c0e981
Author: Drew DeVault <sir@cmpwn.com>
Date: Wed, 3 Feb 2021 15:25:41 -0500
os::open: remove TODO
Let's not decode it
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/os/+linux/open.ha b/os/+linux/open.ha
@@ -37,7 +37,7 @@ export fn open(
};
const name: str = match (path) {
s: str => s,
- b: []u8 => "<open([]u8)>", // TODO: try to decode it?
+ b: []u8 => "<open([]u8)>",
};
let m = mode: int;