From a526209e747642c9dbd8c0cbe9ec2b5247c35d5e Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Wed, 24 Oct 2012 18:22:45 +0100 Subject: More useful title info for images. --- image/webp.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'image/webp.c') diff --git a/image/webp.c b/image/webp.c index 080cf8bb0..acf226b5f 100644 --- a/image/webp.c +++ b/image/webp.c @@ -78,7 +78,7 @@ static bool webp_convert(struct content *c) unsigned char *imagebuf = NULL; unsigned long size; int width = 0, height = 0; - char title[100]; + char title[512]; int res = 0; uint8_t *res_p = NULL; @@ -117,7 +117,8 @@ static bool webp_convert(struct content *c) c->width = width; c->height = height; snprintf(title, sizeof(title), messages_get("WebPTitle"), - width, height, size); + nsurl_access_leaf(llcache_handle_get_url(c->llcache)), + c->width, c->height); content__set_title(c, title); bitmap_modified(webp->bitmap); -- cgit v1.2.3