mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 23:58:50 +00:00
Strip semicolons
This commit is contained in:
@@ -4,11 +4,11 @@ package os2
|
||||
import win32 "core:sys/windows"
|
||||
|
||||
_error_string :: proc(errno: i32) -> string {
|
||||
e := win32.DWORD(errno);
|
||||
e := win32.DWORD(errno)
|
||||
if e == 0 {
|
||||
return "";
|
||||
return ""
|
||||
}
|
||||
// TODO(bill): _error_string for windows
|
||||
// FormatMessageW
|
||||
return "";
|
||||
return ""
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user