diff options
author | 2009-01-14 20:21:09 +0000 | |
---|---|---|
committer | 2009-01-14 20:21:09 +0000 | |
commit | a32d7317c7ae58c986b499ad11028dbf49a15da1 (patch) | |
tree | 83e7ef9d9ac2f03b705334ae367492c4994d45f6 /gdb/ser-mingw.c | |
parent | 2009-01-14 Mike Frysinger <vapier@gentoo.org> (diff) | |
download | binutils-gdb-a32d7317c7ae58c986b499ad11028dbf49a15da1.tar.gz binutils-gdb-a32d7317c7ae58c986b499ad11028dbf49a15da1.tar.bz2 binutils-gdb-a32d7317c7ae58c986b499ad11028dbf49a15da1.zip |
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.
Diffstat (limited to 'gdb/ser-mingw.c')
-rw-r--r-- | gdb/ser-mingw.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/ser-mingw.c b/gdb/ser-mingw.c index 7ed48c4ce95..3b3e2734d4f 100644 --- a/gdb/ser-mingw.c +++ b/gdb/ser-mingw.c @@ -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 |