diff options
author | Calvin Morrison <mutantturkey@gmail.com> | 2014-03-04 14:19:46 -0500 |
---|---|---|
committer | Calvin Morrison <mutantturkey@gmail.com> | 2014-03-04 14:19:46 -0500 |
commit | 592e0945fcfb94d641c16f2cf02add0c0430b226 (patch) | |
tree | 8f4ce109ddf3ee8a51753b1b84e193d8f0155252 /src/c/test.c | |
parent | 2aa4254c4368fd85ca6d37e17c786eb295a79c5a (diff) |
fix all warnings and that weird bug
Diffstat (limited to 'src/c/test.c')
-rw-r--r-- | src/c/test.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/c/test.c b/src/c/test.c index fa905af..0122dc3 100644 --- a/src/c/test.c +++ b/src/c/test.c @@ -60,7 +60,6 @@ void test_normalize_matrix() { int test_number = 1; int fail_flag = 0; char *test_name = "test_normailze_matrix"; - char *type = "%lf"; double sum = 0; int i = 0; @@ -106,8 +105,7 @@ void test_normalize_matrix() { } -int main(int argc, char **argv) { - int test_number = 1; +int main() { header("count_sequences"); test_count_sequences(); |