mirror of
https://github.com/reactos/reactos.git
synced 2026-06-01 00:40:26 +08:00
[EXPLORER] Fix a Clang-Cl warning about Icon->ProcessId
"warning: expression result unused [-Wunused-value]"
Regressed in be2bf9b.
CORE-14306
This commit is contained in:
committed by
Ged Murphy
parent
abdde0b764
commit
f1535c2d6e
@@ -332,7 +332,7 @@ bool CIconWatcher::AddIconToWatcher(_In_ CONST NOTIFYICONDATA *iconData)
|
||||
|
||||
IconWatcherData *Icon = new IconWatcherData(iconData);
|
||||
Icon->hProcess = hProcess;
|
||||
Icon->ProcessId;
|
||||
Icon->ProcessId = ProcessId;
|
||||
|
||||
bool Added = false;
|
||||
EnterCriticalSection(&m_ListLock);
|
||||
|
||||
Reference in New Issue
Block a user