mirror of
https://github.com/wangyu-/UDPspeeder.git
synced 2025-04-04 11:09:32 +08:00
increase compatibility
Replace `bcmp` with `memcmp` to increase compatibility.
This commit is contained in:
parent
3375c6ac9d
commit
c9fd5a0b09
@ -515,7 +515,7 @@ found_piv:
|
|||||||
* we can optimize the addmul).
|
* we can optimize the addmul).
|
||||||
*/
|
*/
|
||||||
id_row[icol] = 1;
|
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 ) {
|
for (p = src, ix = 0 ; ix < k ; ix++, p += k ) {
|
||||||
if (ix != icol) {
|
if (ix != icol) {
|
||||||
c = p[icol] ;
|
c = p[icol] ;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user