mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
Add -trans option for amino acid alignments Changes: https://microbesonline.org/fasttree/ChangeLog PR: 283035 Reported by: alster@vinterdalen.se
11 lines
321 B
C
11 lines
321 B
C
--- FastTree-2.1.11.c.orig 2017-12-04 15:09:11 UTC
|
|
+++ FastTree-2.1.11.c
|
|
@@ -8759,7 +8759,7 @@ double pnorm(double x)
|
|
|
|
void *mymalloc(size_t sz) {
|
|
if (sz == 0) return(NULL);
|
|
- void *new = malloc(sz);
|
|
+ void *new = aligned_alloc(16, sz);
|
|
if (new == NULL) {
|
|
fprintf(stderr, "Out of memory\n");
|
|
exit(1);
|