[w3m-dev 02506]

From: Fumitoshi UKAI <ukai@debian.or.jp>
This commit is contained in:
Fumitoshi UKAI
2001-11-22 14:07:37 +00:00
parent b7aa17d4b2
commit 06680ddf4c
4 changed files with 10 additions and 15 deletions
+1 -5
View File
@@ -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;
}