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

gitlab.com/quite/celt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJean-Marc Valin <Jean-Marc.Valin@csiro.au>2008-02-14 06:18:19 +0300
committerJean-Marc Valin <Jean-Marc.Valin@csiro.au>2008-02-14 06:18:19 +0300
commitbf17da60f0b1554e1e0b82ff7b6efe59a3622090 (patch)
treeb2ba82e1b2d396a898e0d8bce0efe8d259f1eb1f /tests
parent5fa59954a9c9f13ecaa3afeb2bb1102619a9f38e (diff)
Reduced useless calls to ncwrs64() by half.
Diffstat (limited to 'tests')
-rw-r--r--tests/cwrs64-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cwrs64-test.c b/tests/cwrs64-test.c
index a5f5e2e..472095c 100644
--- a/tests/cwrs64-test.c
+++ b/tests/cwrs64-test.c
@@ -31,7 +31,7 @@ int main(int _argc,char **_argv){
printf(" %c%i",k>0&&x[k]==x[k-1]?' ':s[k]?'-':'+',x[k]);
}
printf(" ->");*/
- if(icwrs64(n,m,x,s)!=i){
+ if(icwrs64(n,m,x,s, NULL)!=i){
fprintf(stderr,"Combination-index mismatch.\n");
return 1;
}