Browse Source

avfilter/vf_vif: Remove superfluous ';'

Inside a function a superfluous ';' is just a null-statement; yet
outside it is invalid, even though compilers happen to accept them.
They (at least GCC and Clang) only warn about this when on -pedantic.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
tags/n4.4
Andreas Rheinhardt 4 years ago
parent
commit
14dc28e969
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavfilter/vf_vif.c

+ 2
- 2
libavfilter/vf_vif.c View File

@@ -429,8 +429,8 @@ static void offset_##bits##bit(VIFContext *s, \
} \ } \
} }


offset_fn(uint8_t, 8);
offset_fn(uint16_t, 10);
offset_fn(uint8_t, 8)
offset_fn(uint16_t, 10)


static void set_meta(AVDictionary **metadata, const char *key, float d) static void set_meta(AVDictionary **metadata, const char *key, float d)
{ {


Loading…
Cancel
Save