From 955c7e6b6418ff629015b632c7e5a81310003535 Mon Sep 17 00:00:00 2001 From: Hannes Ljungberg Date: Fri, 27 Mar 2015 13:31:40 +0100 Subject: [PATCH] Remove unneeded space in EXT-X-PLAYLIST-TYPE tag --- hls/ngx_rtmp_hls_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hls/ngx_rtmp_hls_module.c b/hls/ngx_rtmp_hls_module.c index 7c573a3..d1498c0 100644 --- a/hls/ngx_rtmp_hls_module.c +++ b/hls/ngx_rtmp_hls_module.c @@ -528,7 +528,7 @@ ngx_rtmp_hls_write_playlist(ngx_rtmp_session_t *s) ctx->frag, max_frag); if (hacf->type == NGX_RTMP_HLS_TYPE_EVENT) { - p = ngx_slprintf(p, end, "#EXT-X-PLAYLIST-TYPE: EVENT\n"); + p = ngx_slprintf(p, end, "#EXT-X-PLAYLIST-TYPE:EVENT\n"); } n = ngx_write_fd(fd, buffer, p - buffer);