add make test

This commit is contained in:
Zhi Guan
2021-07-31 22:18:28 +08:00
parent 2ecba70472
commit d6feba3749
2 changed files with 44 additions and 3 deletions

View File

@@ -85,7 +85,7 @@ void gf128_print_bits(gf128_t a)
{
int i;
for (i = 0; i < 128; i++) {
printf("%d", a % 2);
printf("%d", (int)(a % 2));
a >>= 1;
}
printf("\n");