aboutsummaryrefslogtreecommitdiff
path: root/core/flags/errors.odin
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2024-08-04 15:53:18 +0100
committerGitHub <noreply@github.com>2024-08-04 15:53:18 +0100
commitf427f040fd83f5db411396bd4d4eae6f39c26de7 (patch)
tree0ee1feef26570f195a8d0d00d0266edc028dbfec /core/flags/errors.odin
parent71932628cc3c1957a98e998740b059df9b7dd392 (diff)
parentc078b2dd1be617e6687a3a5ffc919a45bbabb5bf (diff)
Merge pull request #4020 from odin-lang/bill/os-errno
`os.Error` to replace `os.Errno`
Diffstat (limited to 'core/flags/errors.odin')
-rw-r--r--core/flags/errors.odin2
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,
}