From 3366b5b9070d17fa6fc75780dd7eb559d6142c5d Mon Sep 17 00:00:00 2001 From: athomps Date: Wed, 5 Jan 2011 17:41:41 +0000 Subject: [PATCH] Added %lu format strings for natoms git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@5488 f3b2605a-c512-4ea7-a41b-209d697bcdaa --- src/REPLICA/tad.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/REPLICA/tad.cpp b/src/REPLICA/tad.cpp index 5f35ebab08..6ae7c25fed 100644 --- a/src/REPLICA/tad.cpp +++ b/src/REPLICA/tad.cpp @@ -390,11 +390,11 @@ void TAD::command(int narg, char **arg) if (me_universe == 0) { if (universe->uscreen) fprintf(universe->uscreen, - "Loop time of %g on %d procs for %d steps with %.15g atoms\n", + "Loop time of %g on %d procs for %d steps with %lu atoms\n", timer->array[TIME_LOOP],nprocs_universe,nsteps,atom->natoms); if (universe->ulogfile) fprintf(universe->ulogfile, - "Loop time of %g on %d procs for %d steps with %.15g atoms\n", + "Loop time of %g on %d procs for %d steps with %lu atoms\n", timer->array[TIME_LOOP],nprocs_universe,nsteps,atom->natoms); }