diff options
Diffstat (limited to 'core/flags/errors.odin')
| -rw-r--r-- | core/flags/errors.odin | 2 |
1 files changed, 1 insertions, 1 deletions
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, } |