more typo. yay.

This commit is contained in:
Colin Davidson
2023-02-19 20:45:56 -08:00
parent 87d6910bb8
commit d325ee4b91

View File

@@ -25,7 +25,7 @@ _get_tsc_frequency :: proc "contextless" () -> u64 {
page_size : uint = 4096
ret := unix.sys_mmap(nil, page_size, unix.PROT_READ, unix.MAP_SHARED, fd, 0)
if ret < 0 && > -4096 {
if ret < 0 && ret > -4096 {
frequency = 1
return 0
}