2009-01-14 Kai Tietz <kai.tietz@onevision.com>

* mingw-ser.c (console_select_thread): Add return to make
	compiler happy.
	(pipe_select_thread): Likewise.
	(file_select_thread): Likewise.
This commit is contained in:
Kai Tietz
2009-01-14 20:21:09 +00:00
parent 4ca47a519d
commit a32d7317c7
2 changed files with 10 additions and 0 deletions

View File

@ -573,6 +573,7 @@ console_select_thread (void *arg)
SetEvent(state->have_stopped);
}
return 0;
}
static int
@ -633,6 +634,7 @@ pipe_select_thread (void *arg)
SetEvent (state->have_stopped);
}
return 0;
}
static DWORD WINAPI
@ -657,6 +659,7 @@ file_select_thread (void *arg)
SetEvent (state->have_stopped);
}
return 0;
}
static void