git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@5504 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
@ -105,10 +105,11 @@ void DeleteAtoms::command(int narg, char **arg)
|
||||
bigint ndelete = natoms_previous - atom->natoms;
|
||||
|
||||
if (comm->me == 0) {
|
||||
if (screen) fprintf(screen,"Deleted %lu atoms, new total = %lu\n",
|
||||
ndelete,atom->natoms);
|
||||
if (logfile) fprintf(logfile,"Deleted %lu atoms, new total = %lu\n",
|
||||
ndelete,atom->natoms);
|
||||
char str[64];
|
||||
sprintf(str,"Deleted %s atoms, new total = %s\n",
|
||||
BIGINT_FORMAT,BIGINT_FORMAT);
|
||||
if (screen) fprintf(screen,str,ndelete,atom->natoms);
|
||||
if (logfile) fprintf(logfile,str,ndelete,atom->natoms);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user