mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-21 00:46:47 +00:00
Begin mapping os.Error in the rest of the codebase
This commit is contained in:
@@ -439,7 +439,7 @@ main :: proc() {
|
||||
}
|
||||
save_path := fmt.tprintf("verify/test_%v_%v.odin", test.package_name, code_test_name)
|
||||
|
||||
test_file_handle, err := os.open(save_path, os.O_WRONLY | os.O_CREATE); if err != 0 {
|
||||
test_file_handle, err := os.open(save_path, os.O_WRONLY | os.O_CREATE); if err != nil {
|
||||
fmt.eprintf("We could not open the file to the path %q for writing\n", save_path)
|
||||
g_bad_doc = true
|
||||
continue
|
||||
|
||||
Reference in New Issue
Block a user