mirror of https://github.com/BOINC/boinc.git
missing variable declaration
svn path=/trunk/boinc/; revision=697
This commit is contained in:
parent
06545dd13a
commit
e5e38a9170
|
@ -386,7 +386,7 @@ bool ACTIVE_TASK_SET::poll() {
|
|||
LONGLONG totTime;
|
||||
bool found = false;
|
||||
|
||||
for (i=0; i<active_tasks.size(); i++) {
|
||||
for (int i=0; i<active_tasks.size(); i++) {
|
||||
atp = active_tasks[i];
|
||||
if (GetExitCodeProcess(atp->pid_handle, &exit_code)) {
|
||||
// Get the elapsed CPU time
|
||||
|
|
Loading…
Reference in New Issue