From: Kai Tietz Date: Wed, 14 Jan 2009 20:21:09 +0000 (+0000) Subject: 2009-01-14 Kai Tietz X-Git-Url: https://repo.jachan.dev/binutils.git/commitdiff_plain/a32d7317c7ae58c986b499ad11028dbf49a15da1 2009-01-14 Kai Tietz * mingw-ser.c (console_select_thread): Add return to make compiler happy. (pipe_select_thread): Likewise. (file_select_thread): Likewise. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index cbcd0e6b9f..0566235691 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,10 @@ +2009-01-14 Kai Tietz + + * mingw-ser.c (console_select_thread): Add return to make + compiler happy. + (pipe_select_thread): Likewise. + (file_select_thread): Likewise. + 2009-01-14 Pedro Alves * mi/mi-main.c (mi_cmd_execute): Clean up parenthesis mess from diff --git a/gdb/ser-mingw.c b/gdb/ser-mingw.c index 7ed48c4ce9..3b3e2734d4 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