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

This commit is contained in:
sjplimp
2009-10-30 18:14:19 +00:00
parent d87f27da3c
commit edfea8bc0f
6 changed files with 6 additions and 6 deletions

View File

@ -419,7 +419,7 @@ void FixDeposit::write_restart(FILE *fp)
if (comm->me == 0) {
int size = n * sizeof(double);
fwrite(&size,sizeof(int),1,fp);
fwrite(&list,sizeof(double),n,fp);
fwrite(list,sizeof(double),n,fp);
}
}