Commit 068886d2 authored by Rafaël Carré's avatar Rafaël Carré

logger: fix HTML mode

(cherry picked from commit 4644b706)
Signed-off-by: default avatarRafaël Carré <funman@videolan.org>
parent 95fc07a9
...@@ -443,7 +443,7 @@ static void HtmlPrint( void *opaque, int type, const msg_item_t *item, ...@@ -443,7 +443,7 @@ static void HtmlPrint( void *opaque, int type, const msg_item_t *item,
fprintf( stream, "%s%s: <span style=\"color: #%06x\">", fprintf( stream, "%s%s: <span style=\"color: #%06x\">",
item->psz_module, ppsz_type[type], color[type] ); item->psz_module, ppsz_type[type], color[type] );
/* FIXME: encode special ASCII characters */ /* FIXME: encode special ASCII characters */
fprintf( stream, fmt, ap ); vfprintf( stream, fmt, ap );
fputs( "</span>\n", stream ); fputs( "</span>\n", stream );
funlockfile( stream ); funlockfile( stream );
vlc_restorecancel( canc ); vlc_restorecancel( canc );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment