Fix prototype declaration / definition mismatch (issue #25)

This commit is contained in:
Dirk Mueller 2016-03-04 20:36:12 +01:00
parent 9f10068e3e
commit 92b7598bd3
2 changed files with 2 additions and 2 deletions

View File

@ -137,7 +137,7 @@ void init_liberasurecode_rs_vand(int k, int m)
rs_galois_init_tables(); rs_galois_init_tables();
} }
void deinit_liberasurecode_rs_vand(int k, int m) void deinit_liberasurecode_rs_vand()
{ {
rs_galois_deinit_tables(); rs_galois_deinit_tables();
} }

View File

@ -329,7 +329,7 @@ int main()
} }
deinit_liberasurecode_rs_vand(k, m); deinit_liberasurecode_rs_vand();
i++; i++;
} }