*** empty log message ***

svn path=/trunk/boinc_samples/; revision=11200
This commit is contained in:
David Anderson 2006-09-26 18:12:41 +00:00
parent c0d2f4d6a6
commit ac5e0eade6
2 changed files with 8 additions and 0 deletions

View File

@ -174,7 +174,14 @@ David 11 Sept 2006
Makefile
worker.C
wrapper/Makefile
David 11 Sept 2006
- include all apps in VS solution
win_build/samples.sln
David 26 Sept 2006
- close state file in uppercase (from Ian/Tigher)
uppercase/
upper_case.C

View File

@ -118,6 +118,7 @@ void worker() {
state = boinc_fopen(resolved_name, "r");
if (state) {
fscanf(state, "%d", &nchars);
fclose(state);
fseek(infile, nchars, SEEK_SET);
boinc_resolve_filename(OUTPUT_FILENAME, resolved_name, sizeof(resolved_name));
retval = out.open(resolved_name, "a");