Minor typo. User is being passed into this fuction as a long pointer, not a long.
This commit is contained in:
parent
49303fdabc
commit
4fc1369a1b
|
@ -137,7 +137,7 @@ static int read_cpu_stats(switch_profile_timer_t *p,
|
||||||
/* test each of the known formats starting from the bigger one */
|
/* test each of the known formats starting from the bigger one */
|
||||||
elements = sscanf(cpustr, CPU_INFO_FORMAT_3, user, nice, system, idle, iowait, irq, softirq, steal, &guest);
|
elements = sscanf(cpustr, CPU_INFO_FORMAT_3, user, nice, system, idle, iowait, irq, softirq, steal, &guest);
|
||||||
if (elements == CPU_ELEMENTS_3) {
|
if (elements == CPU_ELEMENTS_3) {
|
||||||
user += guest; /* guest operating system's run in user space */
|
*user += guest; /* guest operating system's run in user space */
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue