diff --git a/libraries/shared/src/CPUIdent.cpp b/libraries/shared/src/CPUIdent.cpp index 81a2a8a869..6211e75bf1 100644 --- a/libraries/shared/src/CPUIdent.cpp +++ b/libraries/shared/src/CPUIdent.cpp @@ -34,7 +34,7 @@ void getCPUID(int32_t* p, int32_t ax) { ); } void getCPUIDEX(int32_t* p, int32_t ax, int32_t ecx) { - getCPUID(p, ax, ecx); + getCPUID(p, ax); } #elif defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID) @@ -49,7 +49,7 @@ void getCPUID(int32_t* p, int32_t ax) { ); } void getCPUIDEX(int32_t* p, int32_t ax, int32_t ecx) { - getCPUID(p, ax, ecx); + getCPUID(p, ax); } #else @@ -59,7 +59,7 @@ void getCPUID(int32_t* p, int32_t ax) { } } void getCPUIDEX(int32_t* p, int32_t ax, int32_t ecx) { - getCPUID(p, ax, ecx); + getCPUID(p, ax); } #endif