diff --git a/include/dusk/endian.h b/include/dusk/endian.h index e73eb8da19..d16d0aa80c 100644 --- a/include/dusk/endian.h +++ b/include/dusk/endian.h @@ -241,8 +241,8 @@ struct BE { } void to_host(Mtx23& mtx) const { - for (int i = 0; i < 3; i++) { - for (int j = 0; j < 4; j++) { + for (int i = 0; i < 2; i++) { + for (int j = 0; j < 3; j++) { mtx[i][j] = contents[i][j]; } }