From 846b043770f500398d7632b384cac83789f75a1a Mon Sep 17 00:00:00 2001 From: Karl Chen Date: Fri, 1 Aug 2003 08:00:55 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=1934 --- client/client_state.C | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/client_state.C b/client/client_state.C index 9e7af643d6..cb67f86827 100644 --- a/client/client_state.C +++ b/client/client_state.C @@ -399,10 +399,10 @@ int CLIENT_STATE::cpu_benchmarks() { // need to check cache!! host_info.m_cache = 1e6; - msg_printf(NULL, MSG_INFO, "Benchmark results: FP: %.0fe6%s; Int: %.0fe6%s; Mem BW: %.0fe6%s", - host_info.p_fpops/1e6, (host_info.p_fpop_err?" [ERROR]":""), - host_info.p_iops/1e6, (host_info.p_iop_err?" [ERROR]":""), - host_info.p_membw/1e6, (host_info.p_membw_err?" [ERROR]":"") + msg_printf(NULL, MSG_INFO, "Benchmark results: FP: %.0fe6%s; Int: %.0fe6%s; Mem BW: %.0fe6%s", + host_info.p_fpops/1e6, (host_info.p_fpop_err?" [ERROR]":""), + host_info.p_iops/1e6, (host_info.p_iop_err?" [ERROR]":""), + host_info.p_membw/1e6, (host_info.p_membw_err?" [ERROR]":"") ); }