This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[COMMIT] Properly include "ser-base.h" in "ser-base.c"


Came across this obvious mistake; Makefile.in mentions the proper one.

Committed,

Mark


Index: ChangeLog
===================================================================
RCS file: /cvs/src/src/gdb/ChangeLog,v
retrieving revision 1.7088
diff -u -p -r1.7088 ChangeLog
--- ChangeLog	22 Apr 2005 20:32:01 -0000	1.7088
+++ ChangeLog	22 Apr 2005 21:21:22 -0000
@@ -1,3 +1,7 @@
+2005-04-22  Mark Kettenis  <kettenis@gnu.org>
+
+	* ser-base.c: Include "ser-base.h" instead of "ser-unix.h".
+
 2005-04-22  Mark Mitchell  <mark@codesourcery.com>
 
 	* ser-base.c (<sys/time.h>): Include.
Index: ser-base.c
===================================================================
RCS file: /cvs/src/src/gdb/ser-base.c,v
retrieving revision 1.5
diff -u -p -r1.5 ser-base.c
--- ser-base.c	22 Apr 2005 20:32:01 -0000	1.5
+++ ser-base.c	22 Apr 2005 21:21:22 -0000
@@ -22,14 +22,15 @@
 
 #include "defs.h"
 #include "serial.h"
-#include "ser-unix.h"
+#include "ser-base.h"
 #include "event-loop.h"
+
+#include "gdb_string.h"
 #include <sys/time.h>
 #ifdef USE_WIN32API
 #include <winsock2.h>
 #endif
 
-#include "gdb_string.h"
 
 static timer_handler_func push_event;
 static handler_func fd_event;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]