replace fmt::print() with utils::print()

This commit is contained in:
Axel Kohlmeyer
2025-01-23 00:11:31 -05:00
parent 8baec60155
commit e4dbfee498
69 changed files with 397 additions and 397 deletions

View File

@ -902,7 +902,7 @@ void FixAveChunk::end_of_step()
if (overwrite) (void) platform::fseek(fp,filepos);
double count = 0.0;
for (m = 0; m < nchunk; m++) count += count_total[m];
fmt::print(fp,"{} {} {}\n",ntimestep,nchunk,count);
utils::print(fp,"{} {} {}\n",ntimestep,nchunk,count);
int compress = cchunk->compress;
int *chunkID = cchunk->chunkID;