Strip semicolons

This commit is contained in:
gingerBill
2021-09-19 11:59:44 +01:00
parent ceebd7b23c
commit ee876ad66b
20 changed files with 517 additions and 514 deletions
+3 -3
View File
@@ -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 ""
}