commit 5a56d24a3c75adbc7730375a1f67a0e50449fc69
parent c27ecfe196af587c59c748035d2a704fff59af4d
Author: Heiko Wundram <modelnine@ceosg.de>
Date: Sat, 7 May 2005 19:25:50 +0000
Modified the defaults of EXTRACTOR_addLibrary(Last) to set options to
NULL, as they aren't passed options.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main/extractor.c b/src/main/extractor.c
@@ -415,7 +415,7 @@ EXTRACTOR_ExtractorList *
EXTRACTOR_addLibrary (EXTRACTOR_ExtractorList * prev,
const char *library)
{
- return EXTRACTOR_addLibrary2(prev, library, "");
+ return EXTRACTOR_addLibrary2(prev, library, NULL);
}
/* Internal function which takes options. */
@@ -459,7 +459,7 @@ EXTRACTOR_ExtractorList *
EXTRACTOR_addLibraryLast (EXTRACTOR_ExtractorList * prev,
const char *library)
{
- return EXTRACTOR_addLibraryLast2(prev, library, "");
+ return EXTRACTOR_addLibraryLast2(prev, library, NULL);
}
/**