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/sim/common ChangeLog sim-options.c


CVSROOT:	/cvs/src
Module name:	src
Changes by:	vapier@sourceware.org	2010-04-10 07:35:35

Modified files:
	sim/common     : ChangeLog sim-options.c 

Log message:
	sim: add const markings to env string
	
	The sim-options code assigns a const string to "char *" in decoding the
	current environment settings, and only uses it to pass to a printf.  GCC
	outputs the warnings:
	common/sim-options.c: In function 'standard_option_handler':
	common/sim-options.c:271: warning: assignment discards qualifiers from pointer
	target type
	common/sim-options.c:272: warning: assignment discards qualifiers from pointer
	target type
	common/sim-options.c:273: warning: assignment discards qualifiers from pointer
	target type
	
	So I've committed this as "obvious".
	
	Signed-off-by: Mike Frysinger <vapier@gentoo.org>

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/sim/common/ChangeLog.diff?cvsroot=src&r1=1.205&r2=1.206
http://sourceware.org/cgi-bin/cvsweb.cgi/src/sim/common/sim-options.c.diff?cvsroot=src&r1=1.16&r2=1.17


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