Skip to content

Commit 404854b

Browse files
authored
Merge pull request #324 from mohabsafey/fix-compatibility-julia1.10
fixes compatibility with julia-1.10
2 parents 02c06d6 + 3a21cda commit 404854b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/msolve/lifting-gb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1669,7 +1669,7 @@ uint64_t export_results_from_groebner_qq(
16691669
ht_t *ht = gb->bht;
16701670
const len_t ebl = ht->ebl;
16711671
const len_t evl = ht->evl;
1672-
int *evi = (int *)(*mallocp)((unsigned long)(ht->nv + 1) * sizeof(int));
1672+
int *evi = (int *)malloc((unsigned long)(ht->nv + 1) * sizeof(int));
16731673
if (ebl == 0) {
16741674
for (len_t i = 1; i <= evl; ++i) {
16751675
evi[i-1] = i;

0 commit comments

Comments
 (0)