summaryrefslogtreecommitdiff
path: root/source/libvpx/vpx_ports/x86_cpuid.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/libvpx/vpx_ports/x86_cpuid.c')
-rw-r--r--source/libvpx/vpx_ports/x86_cpuid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/libvpx/vpx_ports/x86_cpuid.c b/source/libvpx/vpx_ports/x86_cpuid.c
index fe86cfc..02d382c 100644
--- a/source/libvpx/vpx_ports/x86_cpuid.c
+++ b/source/libvpx/vpx_ports/x86_cpuid.c
@@ -38,7 +38,7 @@ vpx_cpu_t vpx_x86_vendor(void) {
int i;
/* Get the Vendor String from the CPU */
- cpuid(0, reg_eax, vs[0], vs[2], vs[1]);
+ cpuid(0, 0, reg_eax, vs[0], vs[2], vs[1]);
for (i = 0; i < VPX_CPU_LAST; i++) {
if (strncmp((const char *)vs, cpuid_vendor_list[i].vendor_string, 12) == 0)