From b91eb4522cc81aca73ea98740ae815f2039f5ef2 Mon Sep 17 00:00:00 2001 From: Eric Heien Date: Thu, 20 Feb 2003 23:18:31 +0000 Subject: [PATCH] credit bug fix svn path=/trunk/boinc/; revision=953 --- client/client_types.C | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/client_types.C b/client/client_types.C index f03962feea..480156ecce 100644 --- a/client/client_types.C +++ b/client/client_types.C @@ -700,9 +700,11 @@ int RESULT::write(FILE* out, bool to_server) { fprintf(out, "\n" " %s\n" - " %f\n", + " %f\n" + " %d\n", name, - final_cpu_time + final_cpu_time, + state ); n = strlen(stderr_out); if (n) { @@ -718,10 +720,8 @@ int RESULT::write(FILE* out, bool to_server) { } if (!to_server) { fprintf(out, - " %d\n" " %s\n" " %d\n", - state, wu_name, report_deadline );