| Index: media/gpu/v4l2_device.cc
|
| diff --git a/media/gpu/v4l2_device.cc b/media/gpu/v4l2_device.cc
|
| index d80989d84f47a7d8aba1578a7fce241c6faa3831..a29110431b27ae1bbbd46174d3b4201973cabf37 100644
|
| --- a/media/gpu/v4l2_device.cc
|
| +++ b/media/gpu/v4l2_device.cc
|
| @@ -242,14 +242,14 @@ void V4L2Device::GetSupportedResolution(uint32_t pixelformat,
|
| if (max_resolution->IsEmpty()) {
|
| max_resolution->SetSize(1920, 1088);
|
| LOG(ERROR) << "GetSupportedResolution failed to get maximum resolution for "
|
| - << "fourcc " << std::hex << pixelformat << ", fall back to "
|
| - << max_resolution->ToString();
|
| + << "fourcc " << std::hex << pixelformat
|
| + << ", fall back to " << max_resolution->ToString();
|
| }
|
| if (min_resolution->IsEmpty()) {
|
| min_resolution->SetSize(16, 16);
|
| LOG(ERROR) << "GetSupportedResolution failed to get minimum resolution for "
|
| - << "fourcc " << std::hex << pixelformat << ", fall back to "
|
| - << min_resolution->ToString();
|
| + << "fourcc " << std::hex << pixelformat
|
| + << ", fall back to " << min_resolution->ToString();
|
| }
|
| }
|
|
|
|
|