--- psiconv/trunk/program/psiconv/gen_html4.c 2004/02/04 12:19:09 196 +++ psiconv/trunk/program/psiconv/gen_html4.c 2005/11/15 15:52:34 270 @@ -1,6 +1,6 @@ /* gen_html.c - Part of psiconv, a PSION 5 file formats converter - Copyright (c) 1999-2004 Frodo Looijaard + Copyright (c) 1999-2005 Frodo Looijaard This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -317,7 +317,7 @@ } -static struct fileformat_s ffs[] = +static struct fileformat_s fileformats[] = { { "HTML4", @@ -337,6 +337,6 @@ void init_html4(void) { int i; - for (i = 0; ffs[i].name; i++) - psiconv_list_add(fileformat_list,ffs+i); + for (i = 0; fileformats[i].name; i++) + psiconv_list_add(fileformat_list,fileformats+i); }