$NetBSD: patch-ac,v 1.4 2005/12/30 17:24:25 joerg Exp $ --- program/psiconv/gen_html4.c.orig 2005-12-30 17:00:29.000000000 +0000 +++ program/psiconv/gen_html4.c @@ -317,7 +317,7 @@ int gen_html4(const psiconv_config confi } -static struct fileformat_s ffs[] = +static struct fileformat_s my_ffs[] = { { "HTML4", @@ -337,6 +337,6 @@ static struct fileformat_s ffs[] = void init_html4(void) { int i; - for (i = 0; ffs[i].name; i++) - psiconv_list_add(fileformat_list,ffs+i); + for (i = 0; my_ffs[i].name; i++) + psiconv_list_add(fileformat_list,my_ffs+i); }