2009-01-14 Kai Tietz <kai.tietz@onevision.com>
authorKai Tietz <kai.tietz@onevision.com>
Wed, 14 Jan 2009 20:21:09 +0000 (20:21 +0000)
committerKai Tietz <kai.tietz@onevision.com>
Wed, 14 Jan 2009 20:21:09 +0000 (20:21 +0000)
* mingw-ser.c (console_select_thread): Add return to make
compiler happy.
(pipe_select_thread): Likewise.
(file_select_thread): Likewise.

gdb/ChangeLog
gdb/ser-mingw.c

index cbcd0e6b9f340674e3ba04491f39d41756d6ca66..056623569154be5e116f9b70fddc95fc1e49b6f4 100644 (file)
@@ -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
index 7ed48c4ce95ec29bd3741187be9b9e7db425b3f6..3b3e2734d4f2410841fc476d951c467d8578105b 100644 (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
This page took 0.040475 seconds and 4 git commands to generate.