videoio: return -1 is incorrect for function with 'bool' result
authorAlexander Alekhin <alexander.a.alekhin@gmail.com>
Mon, 15 Oct 2018 18:20:15 +0000 (18:20 +0000)
committerAlexander Alekhin <alexander.a.alekhin@gmail.com>
Mon, 15 Oct 2018 18:20:15 +0000 (18:20 +0000)
modules/videoio/src/cap_v4l.cpp

index 35a948d..1bc5c9e 100644 (file)
@@ -1722,7 +1722,7 @@ static bool icvSetControl (CvCaptureCAM_V4L* capture,
         fprintf(stderr,
                 "VIDEOIO ERROR: V4L2: setting property #%d is not supported\n",
                 property_id);
-        return -1;
+        return false;
     }
 
     /* get the min/max values */