Fix errors in package win32

This commit is contained in:
gingerBill
2020-04-30 17:48:35 +01:00
parent f63b9806d2
commit 117ade0700
4 changed files with 14 additions and 13 deletions
+1 -2
View File
@@ -53,9 +53,8 @@ compare :: inline proc "contextless" (a, b: []byte) -> int {
return len(a) <= len(b) ? -1 : +1;
} else if len(a) == 0 && len(b) == 0 {
return 0;
} else {
return res;
}
return res;
}
compare_byte_ptrs :: proc "contextless" (a, b: ^byte, n: int) -> int #no_bounds_check {