aboutsummaryrefslogtreecommitdiff
path: root/libsylph/html.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-09-02 10:31:10 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-09-02 10:31:10 +0000
commit02a672d5bfa50cad8ab5cb047125c708c68176ab (patch)
tree455d2e2127fb9f8337a7218ab054e47491a18813 /libsylph/html.c
parent67fecb1232183bad2ac2eec436c8affd4c3e49f7 (diff)
fixed signedness warnings.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@544 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph/html.c')
-rw-r--r--libsylph/html.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsylph/html.c b/libsylph/html.c
index 7ba2acd3..842dae2e 100644
--- a/libsylph/html.c
+++ b/libsylph/html.c
@@ -307,7 +307,7 @@ static HTMLTag *html_get_tag(const gchar *str)
{
HTMLTag *tag;
gchar *tmp;
- guchar *tmpp;
+ gchar *tmpp;
g_return_val_if_fail(str != NULL, NULL);