Browse Source

more typo. yay.

Colin Davidson 2 years ago
parent
commit
d325ee4b91
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/time/tsc_linux.odin

+ 1 - 1
core/time/tsc_linux.odin

@@ -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
 	}