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

This commit is contained in:
sjplimp
2016-02-15 15:26:57 +00:00
parent ce579ea42e
commit 70aa37e4c8
106 changed files with 335 additions and 596 deletions

View File

@ -1092,7 +1092,7 @@ char *shell_failed_message(const char* cmd, int errnum)
const char *errmsg = strerror(errnum);
int len = strlen(cmd)+strlen(errmsg)+64;
char *msg = new char[len];
sprintf(msg,"shell command '%s' failed with error '%s'", cmd, errmsg);
sprintf(msg,"Shell command '%s' failed with error '%s'", cmd, errmsg);
return msg;
}
@ -1195,7 +1195,7 @@ void Input::shell()
if (me == 0)
if (system(work) != 0)
error->warning(FLERR,"shell command returned with non-zero status");
error->warning(FLERR,"Shell command returned with non-zero status");
}
}