mirror of https://github.com/BOINC/boinc.git
Missing parentheses after while
git-svn-id: svn+ssh://cvs.lpds.sztaki.hu/var/lib/svn/szdg/dcapi/trunk@729 a7169a2c-3604-0410-bc95-c702d8d87f7a
This commit is contained in:
parent
858ecf349f
commit
81d3252d70
|
@ -101,7 +101,7 @@ static void count_subresults(void)
|
||||||
if (!strncmp(fdata.cFileName, SUBRESULT_PFX,
|
if (!strncmp(fdata.cFileName, SUBRESULT_PFX,
|
||||||
strlen(SUBRESULT_PFX)))
|
strlen(SUBRESULT_PFX)))
|
||||||
max_subresults++;
|
max_subresults++;
|
||||||
} while FindNextFile(hfind, &fdata);
|
} while (FindNextFile(hfind, &fdata));
|
||||||
FindClose(hfind);
|
FindClose(hfind);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Reference in New Issue