| commit | a82dfdd240c59a7c56c43a69831545a1eb91f54e | [log] [tgz] |
|---|---|---|
| author | Jean-Marc Valin <jean-marc.valin@usherbrooke.ca> | Thu Mar 13 23:01:55 2008 +1100 |
| committer | Jean-Marc Valin <jean-marc.valin@usherbrooke.ca> | Thu Mar 13 23:01:55 2008 +1100 |
| tree | 4868a25cb16922755b01dc8f725609a2547e7a01 | |
| parent | 2b35de9164477f19fc80b1c916fddc9f32a2774e [diff] [blame] |
Adjusting/fixing warnings
diff --git a/tests/mathops-test.c b/tests/mathops-test.c index 7044913..0a54126 100644 --- a/tests/mathops-test.c +++ b/tests/mathops-test.c
@@ -14,7 +14,7 @@ int ret = 0; -void testdiv() +void testdiv(void) { celt_int32_t i; for (i=-327670;i<=327670;i++) @@ -37,7 +37,7 @@ } } -void testsqrt() +void testsqrt(void) { celt_int32_t i; for (i=1;i<=1000000000;i++) @@ -55,7 +55,7 @@ } } -int main() +int main(void) { testdiv(); testsqrt();