Merge branch 'sigar-1.6'

This commit is contained in:
Doug MacEachern 2010-05-13 10:14:31 -07:00
commit 6a8f3d3d79
1 changed files with 1 additions and 1 deletions

View File

@ -378,7 +378,7 @@ public class Sigar implements SigarProxy {
CpuPerc[] perc =
new CpuPerc[curLen < oldLen ? curLen : oldLen];
for (int i=0; i<curLen; i++) {
for (int i=0; i<perc.length; i++) {
perc[i] =
CpuPerc.fetch(this, oldCpuList[i],
this.lastCpuList[i]);