From f685e75197ecbfb9af569a2932940671abdb080c Mon Sep 17 00:00:00 2001 From: Tim Woodall Date: Wed, 16 Jun 2004 14:54:53 +0000 Subject: [PATCH] fixed call to allocator This commit was SVN r1309. --- src/class/ompi_free_list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/class/ompi_free_list.c b/src/class/ompi_free_list.c index 810e3ba465..2a156877c5 100644 --- a/src/class/ompi_free_list.c +++ b/src/class/ompi_free_list.c @@ -60,7 +60,7 @@ int ompi_free_list_grow(ompi_free_list_t* flist, size_t num_elements) return OMPI_ERR_TEMP_OUT_OF_RESOURCE; if (NULL != flist->fl_mpool) - ptr = (unsigned char*)flist->fl_mpool->mpool_alloc(flist->fl_mpool, num_elements * flist->fl_elem_size, 0); + ptr = (unsigned char*)flist->fl_mpool->mpool_alloc(flist->fl_mpool, num_elements * flist->fl_elem_size); else ptr = malloc(num_elements * flist->fl_elem_size); if(NULL == ptr)