aboutsummaryrefslogtreecommitdiffstats
path: root/table.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2003-02-20 15:39:18 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2003-02-20 15:39:18 +0000
commit4336b447de0ffda614a3fc463a80b360164fbeb1 (patch)
tree1052e9e093ddcc033095fb5905422f6c421d778a /table.c
parent[w3m-dev 03760] Re: README.cygwin (diff)
downloadw3m-4336b447de0ffda614a3fc463a80b360164fbeb1.tar.gz
w3m-4336b447de0ffda614a3fc463a80b360164fbeb1.zip
[w3m-dev 03761] eliminate compiler warnings
* ftp.c (ftp_login): Str tmp * table.c (feed_table_tag): p is used ifdef ID_EXT From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to '')
-rw-r--r--table.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/table.c b/table.c
index 3271f1c..cfb8a65 100644
--- a/table.c
+++ b/table.c
@@ -1,4 +1,4 @@
-/* $Id: table.c,v 1.39 2003/01/23 18:01:08 ukai Exp $ */
+/* $Id: table.c,v 1.40 2003/02/20 15:39:22 ukai Exp $ */
/*
* HTML table
*/
@@ -2472,7 +2472,9 @@ feed_table_tag(struct table *tbl, char *line, struct table_mode *mode,
int width, struct parsed_tag *tag)
{
int cmd;
+#ifdef ID_EXT
char *p;
+#endif
struct table_cell *cell = &tbl->cell;
int colspan, rowspan;
int col, prev_col;