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

This commit is contained in:
sjplimp
2014-09-10 22:16:50 +00:00
parent 5c05d14e21
commit 7f8da4e667
2 changed files with 2 additions and 1 deletions

View File

@ -677,7 +677,7 @@ void LAMMPS::post_create(int npack, int *pfirst, int *plast, char **arg)
if (strlen(str) + strlen(arg[j]) + 2 > 128)
error->all(FLERR,"Too many -pk arguments in command line");
strcat(str," ");
strcpy(str,arg[j]);
strcat(str,arg[j]);
}
input->one(str);
}