X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/51ce67d59968560f0e975dc97bb0a22a7edb0610..fb01d1fb07f6efd3752ff895fe8a77e26a2b2055:/flist.c diff --git a/flist.c b/flist.c index 1c7385c6..1f90403f 100644 --- a/flist.c +++ b/flist.c @@ -2432,7 +2432,7 @@ struct file_list *flist_new(int flags, char *msg) if (flags & FLIST_TEMP) { if (!(flist->file_pool = pool_create(SMALL_EXTENT, 0, out_of_memory, - POOL_INTERN|POOL_QALIGN))) + POOL_INTERN))) out_of_memory(msg); } else { /* This is a doubly linked list with prev looping back to @@ -2440,7 +2440,7 @@ struct file_list *flist_new(int flags, char *msg) if (!first_flist) { flist->file_pool = pool_create(NORMAL_EXTENT, 0, out_of_memory, - POOL_INTERN|POOL_QALIGN); + POOL_INTERN); if (!flist->file_pool) out_of_memory(msg);