From ef3b5979466d8b01a7c5d02640b4cda70064f3d0 Mon Sep 17 00:00:00 2001 From: Ben Wiley Sittler Date: Sun, 2 Nov 2008 19:28:40 +0000 Subject: [PATCH] add a attribute so screenreader software does not get hopelessly lost. --- caca/codec/export.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caca/codec/export.c b/caca/codec/export.c index 4edd433..6f2fbd4 100644 --- a/caca/codec/export.c +++ b/caca/codec/export.c @@ -488,7 +488,7 @@ static void *export_html3(caca_canvas_t const *cv, size_t *bytes) *bytes = 1000 + cv->height * (10 + maxcols * (48 + 36 + 9 + 17)); cur = data = malloc(*bytes); - cur += sprintf(cur, "
\n"); + cur += sprintf(cur, "
\n"); for(y = 0; y < cv->height; y++) {