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] Fix compiler warning in ser-base.h


Missing #include "gdb_string.h".

Committed (as obvious).

Mark


Index: ChangeLog
from  Mark Kettenis  <kettenis@gnu.org>

	* ser-base.c: Include "gdb_string.h".
	* Makefile.in (ser-base.o): Update dependencies.

Index: ser-base.c
===================================================================
RCS file: /cvs/src/src/gdb/ser-base.c,v
retrieving revision 1.3
diff -u -p -r1.3 ser-base.c
--- ser-base.c 21 Apr 2005 05:34:33 -0000 1.3
+++ ser-base.c 21 Apr 2005 21:22:14 -0000
@@ -28,6 +28,8 @@
 #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]