Skip to content
Snippets Groups Projects
Commit b7fb3368 authored by Andy Cedilnik's avatar Andy Cedilnik
Browse files

ENH: Cast into apropriate type to remove warning

parent 0b5c5781
No related branches found
No related tags found
No related merge requests found
......@@ -787,7 +787,7 @@ void kwsysProcess_Execute(kwsysProcess* cp)
/* Decide whether a child window should be shown. */
si.dwFlags |= STARTF_USESHOWWINDOW;
si.wShowWindow = cp->HideWindow?SW_HIDE:SW_SHOWDEFAULT;
si.wShowWindow = (unsigned short)(cp->HideWindow?SW_HIDE:SW_SHOWDEFAULT);
/* The timeout period starts now. */
cp->StartTime = kwsysProcessTimeGetCurrent();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment