git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@8197 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
@ -106,8 +106,9 @@ void Error::one(const char *file, int line, const char *str)
|
||||
if (screen) fprintf(screen,"ERROR on proc %d: %s (%s:%d)\n",
|
||||
me,str,file,line);
|
||||
if (universe->nworlds > 1)
|
||||
fprintf(universe->uscreen,"ERROR on proc %d: %s (%s:%d)\n",
|
||||
universe->me,str,file,line);
|
||||
if (universe->uscreen)
|
||||
fprintf(universe->uscreen,"ERROR on proc %d: %s (%s:%d)\n",
|
||||
universe->me,str,file,line);
|
||||
MPI_Abort(world,1);
|
||||
}
|
||||
|
||||
|
||||
@ -452,7 +452,8 @@ void PairLJ96Cut::settings(int narg, char **arg)
|
||||
|
||||
void PairLJ96Cut::coeff(int narg, char **arg)
|
||||
{
|
||||
if (narg < 4 || narg > 5) error->all(FLERR,"Incorrect args for pair coefficients");
|
||||
if (narg < 4 || narg > 5)
|
||||
error->all(FLERR,"Incorrect args for pair coefficients");
|
||||
if (!allocated) allocate();
|
||||
|
||||
int ilo,ihi,jlo,jhi;
|
||||
|
||||
Reference in New Issue
Block a user