aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/android/androiddevice.cpp
diff options
context:
space:
mode:
authorChristian Kandeler <[email protected]>2022-02-18 14:28:34 +0100
committerChristian Kandeler <[email protected]>2022-02-23 15:26:31 +0000
commit52e26a360b676c23f9b37261c3616baad3b6fe5d (patch)
treed4fc2fc60ebbe57fe0b7a65f6155bc46adaa59c0 /src/plugins/android/androiddevice.cpp
parent59982f1ca90e380088d792fd0865624462397b01 (diff)
Fix newly introduced warnings
Change-Id: I0b9cf3496d536e1173fbd6587e5b491305eb876c Reviewed-by: Christian Stenger <[email protected]> Reviewed-by: <[email protected]>
Diffstat (limited to 'src/plugins/android/androiddevice.cpp')
-rw-r--r--src/plugins/android/androiddevice.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/android/androiddevice.cpp b/src/plugins/android/androiddevice.cpp
index f6e036b1d68..8a795780519 100644
--- a/src/plugins/android/androiddevice.cpp
+++ b/src/plugins/android/androiddevice.cpp
@@ -573,7 +573,7 @@ void AndroidDeviceManager::setupDevicesWatcher()
[]() { qCDebug(androidDeviceLog) << "ADB device watcher finished."; });
connect(m_adbDeviceWatcherProcess.get(), &Utils::QtcProcess::errorOccurred, this,
- [this](QProcess::ProcessError error) {
+ [this](QProcess::ProcessError) {
qCDebug(androidDeviceLog) << "ADB device watcher encountered an error:"
<< m_adbDeviceWatcherProcess->errorString();
if (!m_adbDeviceWatcherProcess->isRunning()) {