From 7b9ddb80ce43d46a1362b3446c122b5d2059a790 Mon Sep 17 00:00:00 2001 From: Kai Tietz Date: Wed, 14 Jan 2009 20:21:09 +0000 Subject: [PATCH] 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. --- gdb/ChangeLog | 7 +++++++ gdb/ser-mingw.c | 3 +++ 2 files changed, 10 insertions(+) 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 -- 2.11.0