diff mbox

[FFmpeg-devel,V1,2/2] lavc/hls: Cosmetics: Fix indentation for free_segment_list

Message ID 1547481295-27302-2-git-send-email-mypopydev@gmail.com
State Accepted
Headers show

Commit Message

Jun Zhao Jan. 14, 2019, 3:54 p.m. UTC
Commit 673d8cfd518 missed the indent

Signed-off-by: Jun Zhao <mypopydev@gmail.com>
---
 libavformat/hls.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

Comments

Carl Eugen Hoyos Jan. 14, 2019, 4:06 p.m. UTC | #1
2019-01-14 16:54 GMT+01:00, Jun Zhao <mypopydev@gmail.com>:
> Commit 673d8cfd518 missed the indent
>
> Signed-off-by: Jun Zhao <mypopydev@gmail.com>
> ---
>  libavformat/hls.c |    8 ++++----
>  1 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/libavformat/hls.c b/libavformat/hls.c
> index 63e1abe..2dd42ff 100644
> --- a/libavformat/hls.c
> +++ b/libavformat/hls.c
> @@ -12,7 +12,7 @@
>   *
>   * FFmpeg is distributed in the hope that it will be useful,
>   * but WITHOUT ANY WARRANTY; without even the implied warranty of
> - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU1

This change is not ok.

Carl Eugen
diff mbox

Patch

diff --git a/libavformat/hls.c b/libavformat/hls.c
index 63e1abe..2dd42ff 100644
--- a/libavformat/hls.c
+++ b/libavformat/hls.c
@@ -12,7 +12,7 @@ 
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU1
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
@@ -223,9 +223,9 @@  static void free_segment_dynarray(struct segment **segments, int n_segments)
 
 static void free_segment_list(struct playlist *pls)
 {
-        free_segment_dynarray(pls->segments, pls->n_segments);
-        av_freep(&pls->segments);
-        pls->n_segments = 0;
+    free_segment_dynarray(pls->segments, pls->n_segments);
+    av_freep(&pls->segments);
+    pls->n_segments = 0;
 }
 
 static void free_init_section_list(struct playlist *pls)