Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aeecea26 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

V4L/DVB (11225): v4lgrab: fix compilation warnings



Documentation/video4linux/v4lgrab.c: In function ‘main’:
Documentation/video4linux/v4lgrab.c:193: warning: ‘src_depth’ is used uninitialized in this function
Documentation/video4linux/v4lgrab.c:108: warning: ‘b’ may be used uninitialized in this function
Documentation/video4linux/v4lgrab.c:108: warning: ‘g’ may be used uninitialized in this function
Documentation/video4linux/v4lgrab.c:108: warning: ‘r’ may be used uninitialized in this function

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 7ddfda9a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -105,8 +105,8 @@ int main(int argc, char ** argv)
  struct video_picture vpic;

  unsigned char *buffer, *src;
  int bpp = 24, r, g, b;
  unsigned int i, src_depth;
  int bpp = 24, r = 0, g = 0, b = 0;
  unsigned int i, src_depth = 16;

  if (fd < 0) {
    perror(VIDEO_DEV);