From e55de319c842c077d0c2979f99d20ed1f31df0f1 Mon Sep 17 00:00:00 2001 From: Ed Hartnett Date: Sun, 24 Mar 2019 06:03:53 -0600 Subject: [PATCH] fixed memory problem in logging statement --- src/clib/pio_darray_int.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/clib/pio_darray_int.c b/src/clib/pio_darray_int.c index 24b45302078..cf43617eedf 100644 --- a/src/clib/pio_darray_int.c +++ b/src/clib/pio_darray_int.c @@ -640,8 +640,6 @@ int write_darray_multi_par(file_desc_t *file, int nvars, int fndims, const int * /* Write, in non-blocking fashion, a list of subarrays. */ LOG((3, "about to call ncmpi_iput_varn() varids[%d] = %d rrcnt = %d, llen = %d", nv, varids[nv], rrcnt, llen)); - for (int i=0; i< rrcnt; i++) - LOG((3, "i %d start %ld count %ld start %ld count %ld\n",i,startlist[i][0], countlist[i][0],startlist[i][1], countlist[i][1])); ierr = ncmpi_iput_varn(file->fh, varids[nv], rrcnt, startlist, countlist, bufptr, llen, iodesc->mpitype, &vdesc->request[vdesc->nreqs]);