Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy B. Terriberry <tterribe@xiph.org>2014-10-04 08:49:57 +0400
committerTimothy B. Terriberry <tterribe@xiph.org>2014-10-04 08:49:57 +0400
commit554b349cdb50c15a227407d2845787e4c940651b (patch)
tree93280addec7da80814403c7a0352c19032bd1270 /celt/tests
parent020a0a48d5fdbfae76b2db26ad5d65c39efad6ad (diff)
There are no tabs in source code.
There is also no trailing whitespace.
Diffstat (limited to 'celt/tests')
-rw-r--r--celt/tests/test_unit_entropy.c8
-rw-r--r--celt/tests/test_unit_mathops.c2
2 files changed, 5 insertions, 5 deletions
diff --git a/celt/tests/test_unit_entropy.c b/celt/tests/test_unit_entropy.c
index bd839866..ff926586 100644
--- a/celt/tests/test_unit_entropy.c
+++ b/celt/tests/test_unit_entropy.c
@@ -66,10 +66,10 @@ int main(int _argc,char **_argv){
const char *env_seed;
ret=0;
entropy=0;
- if (_argc > 2) {
- fprintf(stderr, "Usage: %s [<seed>]\n", _argv[0]);
- return 1;
- }
+ if (_argc > 2) {
+ fprintf(stderr, "Usage: %s [<seed>]\n", _argv[0]);
+ return 1;
+ }
env_seed = getenv("SEED");
if (_argc > 1)
seed = atoi(_argv[1]);
diff --git a/celt/tests/test_unit_mathops.c b/celt/tests/test_unit_mathops.c
index 5060f7f2..5296f324 100644
--- a/celt/tests/test_unit_mathops.c
+++ b/celt/tests/test_unit_mathops.c
@@ -224,7 +224,7 @@ void testexp2(void)
float error2 = fabs(exp(0.6931471805599453094*x/1024.0)-celt_exp2(x)/65536.0);
if (error1>0.0002&&error2>0.00004)
{
- fprintf (stderr, "celt_exp2 failed: x = "WORD", error1 = %f, error2 = %f\n", x,error1,error2);
+ fprintf (stderr, "celt_exp2 failed: x = "WORD", error1 = %f, error2 = %f\n", x,error1,error2);
ret = 1;
}
}