This is the mail archive of the gdb-cvs@sourceware.org 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]

src/gdb ChangeLog ser-tcp.c


CVSROOT:	/cvs/src
Module name:	src
Changes by:	palves@sourceware.org	2013-04-19 17:48:10

Modified files:
	gdb            : ChangeLog ser-tcp.c 

Log message:
	Make GDB -Wpointer-sign clean on MinGW too.
	
	This is the remaining issue impeding GDB to build with "-Wpointer-sign
	-Werror" with Fedora 17's i686-w64-mingw32 cross toolchain.
	
	../../src/gdb/ser-tcp.c: In function 'net_read_prim':
	../../src/gdb/ser-tcp.c:341:3: error: pointer targets in passing argument 2 of 'recv' differ in signedness [-Werror=pointer-sign]
	In file included from ../../src/gdb/serial.h:23:0,
	from ../../src/gdb/ser-tcp.c:21:
	/usr/i686-w64-mingw32/sys-root/mingw/include/winsock2.h:983:34: note: expected 'char *' but argument is of type 'unsigned char *'
	
	gdb/
	2013-04-19  Pedro Alves  <palves@redhat.com>
	
	* ser-tcp.c (net_read_prim): Cast second argument to recv to
	'void *'.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/ChangeLog.diff?cvsroot=src&r1=1.15459&r2=1.15460
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/ser-tcp.c.diff?cvsroot=src&r1=1.45&r2=1.46


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