Skip to content

Commit 289c914

Browse files
committed
Tune: Remove warning
1 parent b120b52 commit 289c914

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

SolutionProjectModel/helpers.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ int ExecCmd(const wchar_t* cmd)
4242
if (!pipe)
4343
throwFormat("Failed to create process '%S'", cmd);
4444

45-
while (fgets(buffer.data(), buffer.size(), pipe) != nullptr)
45+
while (fgets(buffer.data(), (int)buffer.size(), pipe) != nullptr)
4646
r += buffer.data();
4747

4848
int code = _pclose(pipe);

0 commit comments

Comments
 (0)