From fa125a10bbd1f0a750ff33d9887b3c7fbca063ef Mon Sep 17 00:00:00 2001 From: mann1x <20623405+mann1x@users.noreply.github.com> Date: Sat, 27 Apr 2024 20:30:03 +0200 Subject: [PATCH] Fix typo --- common/common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/common.cpp b/common/common.cpp index 8bd6eb44a..2e4a3befb 100644 --- a/common/common.cpp +++ b/common/common.cpp @@ -733,7 +733,7 @@ ULONG set_procMask(int32_t direction = 0, int32_t req_threads = 0, int32_t lltra * Returns number of CPUs on system that are useful for math. */ int get_math_cpu_count() { -#if defined(__x86_164__) && defined(__linux__) +#if defined(__x86_64__) && defined(__linux__) int cpu_count = sysconf(_SC_NPROCESSORS_ONLN); if (cpu_count < 1) { return get_num_physical_cores();