mirror of https://github.com/fltk/fltk
Remove unused variable, fix "type issue" (#445, part 2)
This commit removes the unused variable as suggested in the discussion of issue #445: "type issue in fluid/ExternalCodeEditor_WIN32.cxx" ... although the compiler would remove it anyway. ;-)
This commit is contained in:
parent
ae240340ab
commit
b5b88d5f0d
|
@ -492,9 +492,8 @@ void ExternalCodeEditor::reap_cleanup() {
|
|||
int ExternalCodeEditor::reap_editor(DWORD *pid_reaped) {
|
||||
if ( pid_reaped ) *pid_reaped = 0;
|
||||
if ( !is_editing() ) return -2;
|
||||
DWORD err;
|
||||
DWORD msecs_wait = 50; // .05 sec
|
||||
switch ( err = WaitForSingleObject(pinfo_.hProcess, msecs_wait) ) {
|
||||
switch ( WaitForSingleObject(pinfo_.hProcess, msecs_wait) ) {
|
||||
case WAIT_TIMEOUT: { // process didn't reap, still running
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue