commit b821ef5949e5403b6ff3cf6ca62d76898aa06307
parent ef4898090e95138fc3530ae2ff37b9b1361f09ac
Author: Christian Grothoff <christian@grothoff.org>
Date: Thu, 24 Feb 2005 07:00:49 +0000
wmf
Diffstat:
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/plugins/filenameextractor.c b/src/plugins/filenameextractor.c
@@ -20,10 +20,10 @@
#include "platform.h"
#include "extractor.h"
-#include "convert.h"
+#include "convert.h"
#ifndef MINGW
#include <langinfo.h>
-#endif
+#endif
/* "extract" the 'filename' as a keyword */
@@ -43,12 +43,12 @@ struct EXTRACTOR_Keywords * libextractor_filename_extract(const char * filename,
keyword = malloc(sizeof(EXTRACTOR_KeywordList));
keyword->next = prev;
keyword->keyword = convertToUtf8(filenameRoot,
- strlen(filenameRoot),
+ strlen(filenameRoot),
#ifndef MINGW
- nl_langinfo(CODESET)
-#else
- ""
-#endif
+ nl_langinfo(CODESET)
+#else
+ ""
+#endif
);
keyword->keywordType = EXTRACTOR_FILENAME;
return keyword;