diff mbox

[FFmpeg-devel] libavcodec/rscc.c: add missing semicolon

Message ID 20190131153659.4756-1-mateuszb@poczta.onet.pl
State Accepted
Commit fe1ccc1e91168c855a2720d0a195377f4638cc70
Headers show

Commit Message

Mateusz Jan. 31, 2019, 3:36 p.m. UTC
Signed-off-by: Mateusz Brzostek <mateuszb@poczta.onet.pl>
---
 libavcodec/rscc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

James Almer Jan. 31, 2019, 3:49 p.m. UTC | #1
On 1/31/2019 12:36 PM, Mateusz wrote:
> Signed-off-by: Mateusz Brzostek <mateuszb@poczta.onet.pl>
> ---
>  libavcodec/rscc.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/libavcodec/rscc.c b/libavcodec/rscc.c
> index e4b51973d8..7d4e842cd3 100644
> --- a/libavcodec/rscc.c
> +++ b/libavcodec/rscc.c
> @@ -64,7 +64,7 @@ typedef struct RsccContext {
>      /* zlib interaction */
>      uint8_t *inflated_buf;
>      uLongf inflated_size;
> -    int valid_pixels
> +    int valid_pixels;
>  } RsccContext;
>  
>  static av_cold int rscc_init(AVCodecContext *avctx)
> 

LGTM
Michael Niedermayer Jan. 31, 2019, 4:06 p.m. UTC | #2
On Thu, Jan 31, 2019 at 12:49:22PM -0300, James Almer wrote:
> On 1/31/2019 12:36 PM, Mateusz wrote:
> > Signed-off-by: Mateusz Brzostek <mateuszb@poczta.onet.pl>
> > ---
> >  libavcodec/rscc.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/libavcodec/rscc.c b/libavcodec/rscc.c
> > index e4b51973d8..7d4e842cd3 100644
> > --- a/libavcodec/rscc.c
> > +++ b/libavcodec/rscc.c
> > @@ -64,7 +64,7 @@ typedef struct RsccContext {
> >      /* zlib interaction */
> >      uint8_t *inflated_buf;
> >      uLongf inflated_size;
> > -    int valid_pixels
> > +    int valid_pixels;
> >  } RsccContext;
> >  
> >  static av_cold int rscc_init(AVCodecContext *avctx)
> > 
> 
> LGTM

will apply unless someone else is faster

thanks

[...]
diff mbox

Patch

diff --git a/libavcodec/rscc.c b/libavcodec/rscc.c
index e4b51973d8..7d4e842cd3 100644
--- a/libavcodec/rscc.c
+++ b/libavcodec/rscc.c
@@ -64,7 +64,7 @@  typedef struct RsccContext {
     /* zlib interaction */
     uint8_t *inflated_buf;
     uLongf inflated_size;
-    int valid_pixels
+    int valid_pixels;
 } RsccContext;
 
 static av_cold int rscc_init(AVCodecContext *avctx)