fixed a compiler error

pull/37/merge
Kohsuke Kawaguchi 2014-01-08 21:40:22 -08:00
parent 0ee22abe8c
commit c76cbff0d0
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ namespace winsw
SetConsoleCtrlHandler(null, true); SetConsoleCtrlHandler(null, true);
GenerateConsoleCtrlEvent(CtrlTypes.CTRL_C_EVENT, 0); GenerateConsoleCtrlEvent(CtrlTypes.CTRL_C_EVENT, 0);
process.WaitForExit(shutdownTimeout.TotalMilliseconds); process.WaitForExit((int)shutdownTimeout.TotalMilliseconds);
return process.HasExited; return process.HasExited;
} }