git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@12827 f3b2605a-c512-4ea7-a41b-209d697bcdaa

This commit is contained in:
sjplimp
2014-12-12 00:20:19 +00:00
parent 11d54badb4
commit 1af7b06052
8 changed files with 15 additions and 15 deletions

View File

@ -759,7 +759,7 @@ void Modify::add_fix(int narg, char **arg, int trysuffix)
fix[ifix] = fix_creator(lmp,narg,arg);
}
if (fix[ifix] == NULL) error->all(FLERR,"Invalid fix style");
if (fix[ifix] == NULL) error->all(FLERR,"Unknown fix style");
// check if Fix is in restart_global list
// if yes, pass state info to the Fix so it can reset itself
@ -930,7 +930,7 @@ void Modify::add_compute(int narg, char **arg, int trysuffix)
compute[ncompute] = compute_creator(lmp,narg,arg);
}
if (compute[ncompute] == NULL) error->all(FLERR,"Invalid compute style");
if (compute[ncompute] == NULL) error->all(FLERR,"Unknown compute style");
ncompute++;
}