From c9fd5a0b0928124bd15cc910bbbedc440effba72 Mon Sep 17 00:00:00 2001 From: FH0 <32861476+FH0@users.noreply.github.com> Date: Wed, 15 Sep 2021 22:54:13 +0800 Subject: [PATCH] increase compatibility Replace `bcmp` with `memcmp` to increase compatibility. --- lib/fec.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fec.cpp b/lib/fec.cpp index 982a7f1..d52c0d6 100644 --- a/lib/fec.cpp +++ b/lib/fec.cpp @@ -515,7 +515,7 @@ found_piv: * we can optimize the addmul). */ id_row[icol] = 1; - if (bcmp(pivot_row, id_row, k*sizeof(gf)) != 0) { + if (memcmp(pivot_row, id_row, k*sizeof(gf)) != 0) { for (p = src, ix = 0 ; ix < k ; ix++, p += k ) { if (ix != icol) { c = p[icol] ;