summaryrefslogtreecommitdiff
path: root/converters/psiconv/patches/patch-ac
blob: 4700c2dbf282a74d9fec209f095bf9c55a1a4736 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$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);
 }