1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

whoops, forgot an else in an else if

This commit is contained in:
Sean Laguna 2016-01-26 13:27:32 -06:00
parent ded8d87ba8
commit de4dcb5bd7

View File

@ -177,7 +177,7 @@ QString v4l2::getPixelFormatString(uint32_t pixel_format)
{
return QString("h264");
}
if (pixel_format == V4L2_PIX_FMT_MJPEG)
else if (pixel_format == V4L2_PIX_FMT_MJPEG)
{
return QString("mjpeg");
}