We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b120b52 commit 289c914Copy full SHA for 289c914
1 file changed
SolutionProjectModel/helpers.cpp
@@ -42,7 +42,7 @@ int ExecCmd(const wchar_t* cmd)
42
if (!pipe)
43
throwFormat("Failed to create process '%S'", cmd);
44
45
- while (fgets(buffer.data(), buffer.size(), pipe) != nullptr)
+ while (fgets(buffer.data(), (int)buffer.size(), pipe) != nullptr)
46
r += buffer.data();
47
48
int code = _pclose(pipe);
0 commit comments