aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gdb/ChangeLog7
-rw-r--r--gdb/ser-mingw.c3
2 files changed, 10 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index cbcd0e6..0566235 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,10 @@
+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.
+
2009-01-14 Pedro Alves <pedro@codesourcery.com>
* 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 7ed48c4..3b3e273 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