diff options
author | Dai Sato <satodai@w3m.jp> | 2006-04-07 13:35:35 +0000 |
---|---|---|
committer | Dai Sato <satodai@w3m.jp> | 2006-04-07 13:35:35 +0000 |
commit | 88aaa652d8ee621e58d39b05a4f0752b96b5d694 (patch) | |
tree | 5275c51077efba6364ea402ce96222d31e3f6372 /table.c | |
parent | rewind to 10 Feb 2006. (diff) | |
download | w3m-88aaa652d8ee621e58d39b05a4f0752b96b5d694.tar.gz w3m-88aaa652d8ee621e58d39b05a4f0752b96b5d694.zip |
Use Strnew_charp(" ") instead of the wrong Strnew(" ").
Diffstat (limited to '')
-rw-r--r-- | table.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |