aboutsummaryrefslogtreecommitdiffstats
path: root/table.c
diff options
context:
space:
mode:
authorDai Sato <satodai@w3m.jp>2006-04-07 13:35:35 +0000
committerDai Sato <satodai@w3m.jp>2006-04-07 13:35:35 +0000
commit88aaa652d8ee621e58d39b05a4f0752b96b5d694 (patch)
tree5275c51077efba6364ea402ce96222d31e3f6372 /table.c
parentrewind to 10 Feb 2006. (diff)
downloadw3m-88aaa652d8ee621e58d39b05a4f0752b96b5d694.tar.gz
w3m-88aaa652d8ee621e58d39b05a4f0752b96b5d694.zip
Use Strnew_charp(" ") instead of the wrong Strnew(" ").
Diffstat (limited to '')
-rw-r--r--table.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/table.c b/table.c
index 26edd28..387ac60 100644
--- a/table.c
+++ b/table.c
@@ -1,4 +1,4 @@
-/* $Id: table.c,v 1.51 2006/04/07 13:21:12 inu Exp $ */
+/* $Id: table.c,v 1.52 2006/04/07 13:35:35 inu Exp $ */
/*
* HTML table
*/
@@ -1984,7 +1984,7 @@ renderTable(struct table *t, int max_width, struct html_feed_environ *h_env)
break;
}
if (t->total_height == 0) {
- renderbuf = Strnew(" ");
+ renderbuf = Strnew_charp(" ");
t->total_height++;
t->total_width = 1;
push_render_image(renderbuf, 1, t->total_width, h_env);