From 1d75a612d54f102ef530c1f58546e3cdb239160c Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sun, 4 Aug 2024 11:47:23 +0100 Subject: `os.Errno` -> `os.Error` --- core/flags/errors.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/flags/errors.odin') diff --git a/core/flags/errors.odin b/core/flags/errors.odin index 21ea05477..6e48f6ccf 100644 --- a/core/flags/errors.odin +++ b/core/flags/errors.odin @@ -28,7 +28,7 @@ Parse_Error :: struct { // Provides more granular information than what just a string could hold. Open_File_Error :: struct { filename: string, - errno: os.Errno, + errno: os.Error, mode: int, perms: int, } -- cgit v1.2.3