mirror of
https://github.com/anrieff/libcpuid
synced 2024-11-10 22:59:13 +00:00
Fix issue #45: OS X compilation error
This commit is contained in:
parent
7c7a0fea8b
commit
00f349a7a3
1 changed files with 1 additions and 1 deletions
|
@ -439,7 +439,7 @@ struct msr_driver_t* cpu_msr_driver_open_core(unsigned core_num)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
int cpu_rdmsr(struct msr_driver_t* driver, int msr_index, uint64_t* result)
|
||||
int cpu_rdmsr(struct msr_driver_t* driver, uint32_t msr_index, uint64_t* result)
|
||||
{
|
||||
return set_error(ERR_NOT_IMP);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue