libextractor

GNU libextractor
Log | Files | Refs | Submodules | README | LICENSE

commit fc2e9074d5f8c076c5f0d0725fee0689baad3be0
parent 5bd75085736a255b984e25fdc215b409a4202ffd
Author: Christian Grothoff <christian@grothoff.org>
Date:   Tue, 15 Aug 2006 19:50:20 +0000

symbol overloading fix


Diffstat:
Msrc/main/extract.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/extract.c b/src/main/extract.c @@ -221,7 +221,7 @@ printSelectedKeywords(FILE * handle, * Take title, auth, year and return a string */ static char * -splice(const char * title, +str_splice(const char * title, const char * auth, const char * year) { @@ -332,7 +332,7 @@ printSelectedKeywordsBibtex (FILE * handle, if ( pages ) last = pages; - fprintf(handle, "@misc{ %s,\n",splice(title, author, year)); + fprintf(handle, "@misc{ %s,\n",str_splice(title, author, year)); if ( title ) fprintf(handle, " title = \"%s\"%s\n", title, (last == title)?"":",");