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 07:02:04 +0300
committerJean-Marc Valin <Jean-Marc.Valin@csiro.au>2008-02-14 07:02:04 +0300
commit0d28aa99c03f97f8de82b9d57b6abf90b2b8c1fd (patch)
treeb3a29b80eda3cec3cf376563306836652c9617ab /tests
parentbf17da60f0b1554e1e0b82ff7b6efe59a3622090 (diff)
Now no divisions required in the cwrs code
Diffstat (limited to 'tests')
-rw-r--r--tests/cwrs32-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cwrs32-test.c b/tests/cwrs32-test.c
index 40e1ac4..202c5dd 100644
--- a/tests/cwrs32-test.c
+++ b/tests/cwrs32-test.c
@@ -30,7 +30,7 @@ int main(int _argc,char **_argv){
printf(" %c%i",k>0&&x[k]==x[k-1]?' ':s[k]?'-':'+',x[k]);
}
printf(" ->");*/
- if(icwrs(n,m,x,s)!=i){
+ if(icwrs(n,m,x,s, NULL)!=i){
fprintf(stderr,"Combination-index mismatch.\n");
return 1;
}