mirror of https://github.com/buggins/dlangide.git
fix win32 x64 build
This commit is contained in:
parent
0cdd6a9216
commit
e7e011e815
|
@ -938,7 +938,7 @@ class TerminalDevice : Thread {
|
|||
return false;
|
||||
for (;;) {
|
||||
DWORD bytesWritten = 0;
|
||||
if (WriteFile(hpipe, cast(char*)msg.ptr, msg.length, &bytesWritten, null) != TRUE) {
|
||||
if (WriteFile(hpipe, cast(char*)msg.ptr, cast(int)msg.length, &bytesWritten, null) != TRUE) {
|
||||
return false;
|
||||
}
|
||||
if (bytesWritten < msg.length)
|
||||
|
|
Loading…
Reference in New Issue