forked from Imagelibrary/binutils-gdb
Add qualifier 'const' to argument args
This patch fixes the following error.
../../../git/gdb/gnu-nat.c: In function 'info_port_rights':
../../../git/gdb/gnu-nat.c:3083:11: error: passing argument 1 of 'parse_to_comma_and_eval' from incompatible pointer type [-Werror]
In file included from ../../../git/gdb/breakpoint.h:23:0,
from ../../../git/gdb/inferior.h:37,
from ../../../git/gdb/gnu-nat.c:55:
../../../git/gdb/value.h:763:22: note: expected 'const char **' but argument is of type 'char **'
gdb:
2014-01-07 Yao Qi <yao@codesourcery.com>
* gnu-nat.c (info_port_rights): Add qualifier const to
argument args.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2014-01-07 Yao Qi <yao@codesourcery.com>
|
||||
|
||||
* gnu-nat.c (info_port_rights): Add qualifier const to
|
||||
argument args.
|
||||
|
||||
2014-01-07 Yao Qi <yao@codesourcery.com>
|
||||
|
||||
* gnu-nat.c (trace_me): Use 'void' for empty argument list.
|
||||
|
||||
@@ -3070,7 +3070,7 @@ set_noninvasive_cmd (char *args, int from_tty)
|
||||
|
||||
|
||||
static void
|
||||
info_port_rights (char *args, mach_port_type_t only)
|
||||
info_port_rights (const char *args, mach_port_type_t only)
|
||||
{
|
||||
struct inf *inf = active_inf ();
|
||||
struct value *vmark = value_mark ();
|
||||
|
||||
Reference in New Issue
Block a user