mirror of
https://github.com/reactos/reactos.git
synced 2025-05-19 00:54:18 +00: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:
parent
abdde0b764
commit
f1535c2d6e
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue