diff options
author | Christian Kandeler <[email protected]> | 2022-02-18 14:28:34 +0100 |
---|---|---|
committer | Christian Kandeler <[email protected]> | 2022-02-23 15:26:31 +0000 |
commit | 52e26a360b676c23f9b37261c3616baad3b6fe5d (patch) | |
tree | d4fc2fc60ebbe57fe0b7a65f6155bc46adaa59c0 /src/plugins/android/androiddevice.cpp | |
parent | 59982f1ca90e380088d792fd0865624462397b01 (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.cpp | 2 |
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()) { |