From eca6a9ce1b3183d91849f96b23e065e0c47e481b Mon Sep 17 00:00:00 2001 From: Karl Chen Date: Sat, 22 Nov 2003 02:00:17 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=2668 --- api/boinc_api.C | 2 +- checkin_notes | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/api/boinc_api.C b/api/boinc_api.C index ce9a7f13ce..f7cd9ad8ee 100644 --- a/api/boinc_api.C +++ b/api/boinc_api.C @@ -312,7 +312,7 @@ int boinc_worker_thread_cpu_time(double &cpu_t, double &ws_t) { } int boinc_thread_cpu_time(double& cpu, double& ws) { - return boinc_thread_cpu_time(cpu, ws); + return boinc_worker_thread_cpu_time(cpu, ws); } #endif #endif // _WIN32 diff --git a/checkin_notes b/checkin_notes index 5944ada06d..2711656579 100755 --- a/checkin_notes +++ b/checkin_notes @@ -7747,3 +7747,11 @@ Karl 2003-11-21 client/translation langauge.ini.de +Karl 2003-11-21 + - fixed recursive boinc_thread_cpu_time typo bug that resulted in loss of + client app functionality (bug noticed by Nuno Ferreira + ) + + api/ + boinc_api.C +