Skip to content

Commit 5518db1

Browse files
sunyuechipablodelara
authored andcommitted
Fix erasure_code/gf_vect_mul_test output
Signed-off-by: sunyuechi <[email protected]>
1 parent 9b35322 commit 5518db1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

erasure_code/gf_vect_mul_test.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ main(int argc, char *argv[])
102102
for (i = 0; i < TEST_SIZE; i++)
103103
if (gf_mul(a, buff1[i]) != buff2[i]) {
104104
printf("fail at %d, 0x%x x %d = 0x%x (0x%x)\n", i, a, buff1[i],
105-
buff2[i], gf_mul(2, buff1[i]));
105+
buff2[i], gf_mul(a, buff1[i]));
106106
goto exit;
107107
}
108108
#ifdef TEST_VERBOSE

0 commit comments

Comments
 (0)