summaryrefslogtreecommitdiff
path: root/image/png.c
diff options
context:
space:
mode:
Diffstat (limited to 'image/png.c')
-rw-r--r--image/png.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/image/png.c b/image/png.c
index 6f1d926ee..99482d63d 100644
--- a/image/png.c
+++ b/image/png.c
@@ -510,7 +510,7 @@ png_cache_convert_error:
static bool nspng_convert(struct content *c)
{
nspng_content *png_c = (nspng_content *) c;
- char title[100];
+ char title[512];
assert(png_c->png != NULL);
assert(png_c->info != NULL);
@@ -520,7 +520,8 @@ static bool nspng_convert(struct content *c)
/* set title text */
snprintf(title, sizeof(title), messages_get("PNGTitle"),
- c->width, c->height, c->size);
+ nsurl_access_leaf(llcache_handle_get_url(c->llcache)),
+ c->width, c->height);
content__set_title(c, title);