diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2001-11-22 14:07:37 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2001-11-22 14:07:37 +0000 |
commit | 06680ddf4c51cccd6dc74b3c72348b225183bfb0 (patch) | |
tree | 683fb9940a92cece3b0c4cb23c1585551a1e173d /table.c | |
parent | [w3m-dev 02505] (diff) | |
download | w3m-06680ddf4c51cccd6dc74b3c72348b225183bfb0.tar.gz w3m-06680ddf4c51cccd6dc74b3c72348b225183bfb0.zip |
[w3m-dev 02506]
From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat (limited to '')
-rw-r--r-- | table.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -1,4 +1,4 @@ -/* $Id: table.c,v 1.5 2001/11/22 13:35:45 ukai Exp $ */ +/* $Id: table.c,v 1.6 2001/11/22 14:07:38 ukai Exp $ */ /* * HTML table */ @@ -3109,11 +3109,7 @@ pushTable(struct table *tbl, struct table *tbl1) tbl->tables_size += MAX_TABLE_N; tmp = New_N(struct table_in, tbl->tables_size); if (tbl->tables) -#ifdef __CYGWIN__ - bcopy((const char *) tbl->tables, (char *) tmp, (size_t) tbl->ntable * sizeof(struct table_in)); -#else /* not __CYGWIN__ */ bcopy(tbl->tables, tmp, tbl->ntable * sizeof(struct table_in)); -#endif /* not __CYGWIN__ */ tbl->tables = tmp; } |