android: camera_device: Fix typo in result metadata allocation error

Fix an error message typo s/static/result/.

Signed-off-by: Paul Elder <paul.elder@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
This commit is contained in:
Paul Elder 2021-03-31 20:24:06 +09:00
parent 697e038e54
commit 2cd13cd58e

View file

@ -2187,7 +2187,7 @@ CameraDevice::getResultMetadata(const Camera3RequestDescriptor &descriptor) cons
std::unique_ptr<CameraMetadata> resultMetadata =
std::make_unique<CameraMetadata>(44, 166);
if (!resultMetadata->isValid()) {
LOG(HAL, Error) << "Failed to allocate static metadata";
LOG(HAL, Error) << "Failed to allocate result metadata";
return nullptr;
}