From eda30bacd3904ad20da3a02df84d955e67d9c5fe Mon Sep 17 00:00:00 2001 From: Thorsten Liebig Date: Wed, 24 Jul 2013 17:19:35 +0200 Subject: [PATCH] SAR: fix typo for SAR av. method Signed-off-by: Thorsten Liebig --- tools/sar_calculation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/sar_calculation.cpp b/tools/sar_calculation.cpp index 0f9e296..a9d9a40 100644 --- a/tools/sar_calculation.cpp +++ b/tools/sar_calculation.cpp @@ -59,7 +59,7 @@ void SAR_Calculation::SetAveragingMethod(string method, bool silent) return SetAveragingMethod(IEEE_C95_3, silent); if (method.compare("IEEE_62704")==0) return SetAveragingMethod(IEEE_62704, silent); - if (method.compare("SIMPLE")==0) + if (method.compare("Simple")==0) return SetAveragingMethod(SIMPLE, silent); cerr << __func__ << ": Error, """ << method << """ is an unknown averaging method..." << endl;