aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-03-13 17:25:20 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-03-13 17:25:20 +0000
commit5eafe7b801e143e31298c9ba564baee7139b7049 (patch)
tree761dd58056ceefe6b8ae1f6708e7074cda7d4901
parenta0ed71a5b9602d7364323c2084ce09e6db8844fd (diff)
parent48d24dc307f850add4e7314590f696721e8a42c1 (diff)
downloadwebrtc-5eafe7b801e143e31298c9ba564baee7139b7049.tar.gz
am 48d24dc3: Merge "Fix build."
* commit '48d24dc307f850add4e7314590f696721e8a42c1': Fix build.
-rw-r--r--src/modules/audio_coding/codecs/isac/fix/test/kenny.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/audio_coding/codecs/isac/fix/test/kenny.c b/src/modules/audio_coding/codecs/isac/fix/test/kenny.c
index 8b04c98ec5..ea6b09e0b5 100644
--- a/src/modules/audio_coding/codecs/isac/fix/test/kenny.c
+++ b/src/modules/audio_coding/codecs/isac/fix/test/kenny.c
@@ -363,7 +363,7 @@ int main(int argc, char* argv[])
testCE = atoi(argv[i + 1]);
if (testCE==1 || testCE==2) {
i++;
- scale = (float)atof( argv[i+1] );
+ scale = (float)strtod( argv[i+1], NULL );
} else if (testCE < 1 || testCE > 3) {
printf("\n%d is not a valid CE-test number, valid Fault "
"Scenarios are numbered 1-3\n", testCE);