mirror of
https://github.com/anrieff/libcpuid
synced 2024-11-10 22:59:13 +00:00
Fix a few legit warnings (passing 'int*', where 'uint64*' is expected).
This commit is contained in:
parent
a2550463a9
commit
3f36114b19
1 changed files with 1 additions and 1 deletions
|
@ -525,7 +525,7 @@ int cpu_msrinfo(struct msr_driver_t* handle, cpu_msrinfo_request_t which)
|
||||||
static int max_clock = 0, multiplier = 0;
|
static int max_clock = 0, multiplier = 0;
|
||||||
static double bclk = 0.0;
|
static double bclk = 0.0;
|
||||||
uint64_t val;
|
uint64_t val;
|
||||||
int digital_readout, thermal_status, PROCHOT_temp;
|
uint64_t digital_readout, thermal_status, PROCHOT_temp;
|
||||||
|
|
||||||
if (handle == NULL)
|
if (handle == NULL)
|
||||||
return set_error(ERR_HANDLE);
|
return set_error(ERR_HANDLE);
|
||||||
|
|
Loading…
Reference in a new issue