]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit
-Wpointer-sign: record.c.
authorPedro Alves <palves@redhat.com>
Fri, 19 Apr 2013 15:37:31 +0000 (15:37 +0000)
committerPedro Alves <palves@redhat.com>
Fri, 19 Apr 2013 15:37:31 +0000 (15:37 +0000)
commit9c37696b249b48558ff2162259fc77360c38f28e
treeba8b532641b99ea9380ab5fb8c38884e31550b7b
parenta398505b407f8197a9efd80490d3c4a725aeaab0
-Wpointer-sign: record.c.

../../src/gdb/record.c: In function ‘set_record_insn_history_size’:
../../src/gdb/record.c:670:5: error: pointer targets in passing argument 2 of ‘validate_history_size’ differ in signedness [-Werror=pointer-sign]
../../src/gdb/record.c:646:1: note: expected ‘int *’ but argument is of type ‘unsigned int *’
../../src/gdb/record.c: In function ‘set_record_call_history_size’:
../../src/gdb/record.c:682:5: error: pointer targets in passing argument 2 of ‘validate_history_size’ differ in signedness [-Werror=pointer-sign]
../../src/gdb/record.c:646:1: note: expected ‘int *’ but argument is of type ‘unsigned int *’

This fixes it in the obvious way.

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

* record.c (validate_history_size): Make parameter 'setting'
unsigned.
gdb/ChangeLog
gdb/record.c