From 802b1a70f881968f4e96eb8bbec9f072b4de2892 Mon Sep 17 00:00:00 2001 From: Zac Pierson Date: Wed, 15 Feb 2017 11:20:11 -0600 Subject: [PATCH] Fixed an error in function naming in os_linux --- core/os_linux.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/os_linux.odin b/core/os_linux.odin index f0d9efca1..5d1d6c98d 100644 --- a/core/os_linux.odin +++ b/core/os_linux.odin @@ -82,7 +82,7 @@ open_simple :: proc(path: string, mode: int) -> (Handle, Errno) { } // NOTE(zangent): This is here for compatability reasons. Should this be here? open :: proc(path: string, mode: int, perm: u32) -> (Handle, Errno) { - return open(path, mode); + return open_simple(path, mode); } close :: proc(fd: Handle) {