aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-03-13 00:01:48 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-03-13 00:01:48 +0000
commit48d24dc307f850add4e7314590f696721e8a42c1 (patch)
tree7d8daa942668094c5395cd940c4df039ad500b37
parent1b737a98f4664910d8cef6f7c9d7ef8b28933f59 (diff)
parentdc5deb4b48d76c5abc8dcd6014dd5fa7c1e042f2 (diff)
downloadwebrtc-48d24dc307f850add4e7314590f696721e8a42c1.tar.gz
Merge "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);