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

This commit is contained in:
sjplimp 2013-08-23 21:20:57 +00:00
parent eba9eeccbe
commit 0bc8b26795
1 changed files with 2 additions and 2 deletions

View File

@ -66,10 +66,10 @@ void CiteMe::add(const char *ref)
if (!fp) {
fp = fopen("log.cite","w");
if (!fp) error->universe_one(FLERR,"Could not open log.cite file");
fprintf(fp,cite_header);
fputs(cite_header,fp);
fflush(fp);
}
fprintf(fp,ref);
fputs(ref,fp);
fflush(fp);
}