mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[CMICONTROL] Fix MSVC 14.2 dbg x64 warning C4267 (#5696)
Can be observed on the buildbots: 2023-09-17T14:19:34.2051345Z [10663/14808] Building CXX object drivers\wdm\audio\drivers\CMIDriver\cmicontrol\CMakeFiles\cmicontrol.dir\main.cpp.obj 2023-09-17T14:19:34.2052611Z D:\a\reactos\reactos\src\drivers\wdm\audio\drivers\CMIDriver\cmicontrol\main.cpp(818): warning C4267: '=': conversion from 'size_t' to 'unsigned int', possible loss of data
This commit is contained in:
parent
9ca88bef80
commit
e69d2e8b89
1 changed files with 1 additions and 1 deletions
|
@ -799,7 +799,7 @@ void printUsage()
|
|||
|
||||
void deleteDriverFiles() {
|
||||
TCHAR SysDir[MAX_PATH];
|
||||
unsigned int len;
|
||||
size_t len;
|
||||
if (GetSystemDirectory(SysDir, sizeof(SysDir))==0) {
|
||||
PrintLastError("GetSystemDirectory()");
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue