From 12e09f9f85ac48ff891adf92f3b2c9a5fea27273 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Sat, 4 Dec 2021 14:10:21 -0800 Subject: Chore(REMOVE): finished deprecation of old io functions. The old methods were simple wrappers of C standard library functions. We've moved (painfully) over to a new interface that allows for files to live on the stack. All users of the functionality are ported over. --- sys/linux/src/open.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/linux/src') diff --git a/sys/linux/src/open.c b/sys/linux/src/open.c index fcc014b..f5fb2fd 100644 --- a/sys/linux/src/open.c +++ b/sys/linux/src/open.c @@ -3,6 +3,6 @@ int sys·open(char *path, int flag, int mode, int *ret) { - intptr err = *ret = syscall(·Open, flag, mode); + intptr err = *ret = syscall(·Open, path, flag, mode); return error(err); } -- cgit v1.2.1