git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@10693 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
@ -66,10 +66,10 @@ void CiteMe::add(const char *ref)
|
|||||||
if (!fp) {
|
if (!fp) {
|
||||||
fp = fopen("log.cite","w");
|
fp = fopen("log.cite","w");
|
||||||
if (!fp) error->universe_one(FLERR,"Could not open log.cite file");
|
if (!fp) error->universe_one(FLERR,"Could not open log.cite file");
|
||||||
fprintf(fp,cite_header);
|
fputs(cite_header,fp);
|
||||||
fflush(fp);
|
fflush(fp);
|
||||||
}
|
}
|
||||||
|
|
||||||
fprintf(fp,ref);
|
fputs(ref,fp);
|
||||||
fflush(fp);
|
fflush(fp);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user