Fixed bug in add_work

svn path=/trunk/boinc/; revision=138
This commit is contained in:
Michael Gary 2002-06-28 00:56:08 +00:00
parent b814574c85
commit 20aefffb33
1 changed files with 2 additions and 2 deletions

View File

@ -90,10 +90,10 @@ int main(int argc, char** argv) {
nresults = atoi(argv[i]);
} else if (!strcmp(argv[i], "-rsc_fpops")) {
i++;
wu.rsc_fpops = atof(argv[i]);
wu.rsc_fpops = atof(argv[i+1]);
} else if (!strcmp(argv[i], "-rsc_iops")) {
i++;
wu.rsc_iops = atof(argv[i]);
wu.rsc_iops = atof(argv[i+1]);
} else if (!strcmp(argv[i], "-rsc_memory")) {
i++;
wu.rsc_memory = atof(argv[i]);