r226: more careful about ma_hit_t_alloc memory

This commit is contained in:
Heng Li
2020-04-11 22:05:07 -04:00
parent e6b5b666a2
commit c4397a9400
6 changed files with 33 additions and 41 deletions
+1 -1
View File
@@ -1098,7 +1098,7 @@ void print_asg_arc_t_offset(asg_arc_t_offset* x, long long n, const char* info)
x_off = (long long)(x[i].Off>>32);
y_off = (long long)((uint32_t)x[i].Off);
fprintf(stderr, "i: %lld, x_off: %lld, y_off: %lld, weight: %lu, rev: %u, ol: %u\n",
i, x_off, y_off, x[i].weight, x[i].x.el, x[i].x.ol);
i, x_off, y_off, (unsigned long)x[i].weight, x[i].x.el, x[i].x.ol);
}
}