summaryrefslogtreecommitdiff
path: root/src/libcamera/device_enumerator.cpp
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-01-03 01:52:10 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-01-04 00:23:27 +0200
commit079c5fe63da3e2599a5bbf614caa4d49030aba5d (patch)
tree7f5b71dbdcbbbfc55b118ed16b6b980b534b6c31 /src/libcamera/device_enumerator.cpp
parentb63209a793877f901a4ff4b1224cc7d12c3a2fc4 (diff)
libcamera: device_enumerator: Fix wording of log message
The log message still refers to the DeviceInfo class that has been removed. Replace it with a reference to MediaDevice. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Diffstat (limited to 'src/libcamera/device_enumerator.cpp')
-rw-r--r--src/libcamera/device_enumerator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcamera/device_enumerator.cpp b/src/libcamera/device_enumerator.cpp
index bc55a12f..ecd51bc1 100644
--- a/src/libcamera/device_enumerator.cpp
+++ b/src/libcamera/device_enumerator.cpp
@@ -153,7 +153,7 @@ DeviceEnumerator::~DeviceEnumerator()
{
for (MediaDevice *dev : devices_) {
if (dev->busy())
- LOG(Error) << "Removing device info while still in use";
+ LOG(Error) << "Removing media device while still in use";
delete dev;
}