summaryrefslogtreecommitdiff
path: root/bk_man.c
diff options
context:
space:
mode:
Diffstat (limited to 'bk_man.c')
-rw-r--r--bk_man.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/bk_man.c b/bk_man.c
index a773b60..60157fa 100644
--- a/bk_man.c
+++ b/bk_man.c
@@ -94,13 +94,14 @@ paragraph *man_config_filename(char *filename)
#define QUOTE_QUOTES 2 /* quote double quotes by doubling them */
void man_backend(paragraph *sourceform, keywordlist *keywords,
- indexdata *idx) {
+ indexdata *idx, void *unused) {
paragraph *p;
FILE *fp;
manconfig conf;
- IGNORE(keywords); /* we don't happen to need this */
- IGNORE(idx); /* or this */
+ IGNORE(unused);
+ IGNORE(keywords);
+ IGNORE(idx);
conf = man_configure(sourceform);