]> git.pld-linux.org Git - packages/psiconv.git/blame - psiconv-gcc34.patch
- rel 4
[packages/psiconv.git] / psiconv-gcc34.patch
CommitLineData
3d70305e 1diff -Nur psiconv-0.9.6/program/psiconv/gen_html4.c psiconv-0.9.6-fixed/program/psiconv/gen_html4.c
2--- psiconv-0.9.6/program/psiconv/gen_html4.c 2004-02-04 13:17:38.000000000 +0100
3+++ psiconv-0.9.6-fixed/program/psiconv/gen_html4.c 2004-05-29 19:01:40.000000000 +0200
4@@ -317,7 +317,7 @@
5 }
6
7
8-static struct fileformat_s ffs[] =
9+static struct fileformat_s psiconv_ffs[] =
10 {
11 {
12 "HTML4",
13@@ -337,6 +337,6 @@
14 void init_html4(void)
15 {
16 int i;
17- for (i = 0; ffs[i].name; i++)
18- psiconv_list_add(fileformat_list,ffs+i);
19+ for (i = 0; psiconv_ffs[i].name; i++)
20+ psiconv_list_add(fileformat_list,psiconv_ffs+i);
21 }
22diff -Nur psiconv-0.9.6/program/psiconv/gen_xhtml.c psiconv-0.9.6-fixed/program/psiconv/gen_xhtml.c
23--- psiconv-0.9.6/program/psiconv/gen_xhtml.c 2004-02-04 12:26:54.000000000 +0100
24+++ psiconv-0.9.6-fixed/program/psiconv/gen_xhtml.c 2004-05-29 19:01:46.000000000 +0200
25@@ -719,7 +719,7 @@
26 }
27
28
29-static struct fileformat_s ffs[] =
30+static struct fileformat_s psiconv_ffs[] =
31 {
32 {
33 "XHTML",
34@@ -739,6 +739,6 @@
35 void init_xhtml(void)
36 {
37 int i;
38- for (i = 0; ffs[i].name; i++)
39- psiconv_list_add(fileformat_list,ffs+i);
40+ for (i = 0; psiconv_ffs[i].name; i++)
41+ psiconv_list_add(fileformat_list,psiconv_ffs+i);
42 }
This page took 0.062293 seconds and 4 git commands to generate.