-Wpointer-sign: cp-valprint.c.
authorPedro Alves <palves@redhat.com>
Fri, 19 Apr 2013 15:36:24 +0000 (15:36 +0000)
committerPedro Alves <palves@redhat.com>
Fri, 19 Apr 2013 15:36:24 +0000 (15:36 +0000)
Fix:

../../src/gdb/cp-valprint.c: In function ‘cp_print_class_member’:
../../src/gdb/cp-valprint.c:793:3: error: pointer targets in passing argument 2 of ‘cp_find_class_member’ differ in signedness [-Werror=pointer-sign]
../../src/gdb/cp-valprint.c:721:1: note: expected ‘int *’ but argument is of type ‘unsigned int *’

'fieldno' is used throughout as 'int', so just follow the trend.

gdb/
2013-04-19  Pedro Alves  <palves@redhat.com>

* cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
local to int.

gdb/ChangeLog
gdb/cp-valprint.c

index c265d247f49863a0fbaef60dff1da28516bac527..f2e672c6fca327f596815fa0a7333932b7a1cc1f 100644 (file)
@@ -1,3 +1,8 @@
+2013-04-19  Pedro Alves  <palves@redhat.com>
+
+       * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
+       local to int.
+
 2013-04-19  Pedro Alves  <palves@redhat.com>
 
        * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
index 9a8b4d30088777c2a043b2dd0302ea42495147f0..0871848ec77dade795036c459179586a3b95e74f 100644 (file)
@@ -768,7 +768,7 @@ cp_print_class_member (const gdb_byte *valaddr, struct type *type,
      print it.  */
   struct type *domain = TYPE_DOMAIN_TYPE (type);
   LONGEST val;
-  unsigned int fieldno;
+  int fieldno;
 
   val = extract_signed_integer (valaddr,
                                TYPE_LENGTH (type),