1
0
Fork 0
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:
Veselin Georgiev 2016-06-03 03:34:08 +03:00
parent a2550463a9
commit 3f36114b19

View file

@ -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 double bclk = 0.0;
uint64_t val;
int digital_readout, thermal_status, PROCHOT_temp;
uint64_t digital_readout, thermal_status, PROCHOT_temp;
if (handle == NULL)
return set_error(ERR_HANDLE);