Skip to content
Snippets Groups Projects
Commit 3366b5b9 authored by athomps's avatar athomps
Browse files

Added %lu format strings for natoms

git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@5488 f3b2605a-c512-4ea7-a41b-209d697bcdaa
parent 1dcb17a2
No related branches found
No related tags found
No related merge requests found
...@@ -390,11 +390,11 @@ void TAD::command(int narg, char **arg) ...@@ -390,11 +390,11 @@ void TAD::command(int narg, char **arg)
if (me_universe == 0) { if (me_universe == 0) {
if (universe->uscreen) if (universe->uscreen)
fprintf(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); timer->array[TIME_LOOP],nprocs_universe,nsteps,atom->natoms);
if (universe->ulogfile) if (universe->ulogfile)
fprintf(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); timer->array[TIME_LOOP],nprocs_universe,nsteps,atom->natoms);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment