From 12731f2a2f86b9a7a4c0548c2b9e721f559100bc Mon Sep 17 00:00:00 2001 From: igorshevach Date: Tue, 17 Sep 2024 13:17:01 +0300 Subject: [PATCH] code style --- nginx-rtmp-module/src/ngx_rtmp_codec_module.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx-rtmp-module/src/ngx_rtmp_codec_module.c b/nginx-rtmp-module/src/ngx_rtmp_codec_module.c index 5a71bef9..82286034 100644 --- a/nginx-rtmp-module/src/ngx_rtmp_codec_module.c +++ b/nginx-rtmp-module/src/ngx_rtmp_codec_module.c @@ -1467,7 +1467,7 @@ ngx_rtmp_codec_postconfiguration(ngx_conf_t *cf) nelts = cmcf->events[NGX_RTMP_MSG_AUDIO].nelts; for(;nelts > 1;nelts--, h--) { - *h = h[-1]; + *h = h[-1]; } *h = ngx_rtmp_codec_av; @@ -1479,7 +1479,7 @@ ngx_rtmp_codec_postconfiguration(ngx_conf_t *cf) nelts = cmcf->events[NGX_RTMP_MSG_VIDEO].nelts; for(;nelts > 1;nelts--, h--) { - *h = h[-1]; + *h = h[-1]; } *h = ngx_rtmp_codec_av;