Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
4bad15e4
Commit
4bad15e4
authored
Aug 07, 2003
by
Andy Cedilnik
Browse files
ENH: Cast into apropriate type to remove warning
parent
6e5462b6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/kwsys/ProcessWin32.c
View file @
4bad15e4
...
...
@@ -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
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment