diff options
author | Doug Kwan <dougkwan@google.com> | 2009-12-15 02:02:39 +0000 |
---|---|---|
committer | Doug Kwan <dougkwan@google.com> | 2009-12-15 02:02:39 +0000 |
commit | e7f8eadb7897a84b7e76370aee406ea53a88cec6 (patch) | |
tree | c798402f3070becd20ffee8b831a96e863146cc5 /bfd/bfd-in2.h | |
parent | 4c807e72625c17af7cd55814b4dd02a94c5179ab (diff) | |
download | gdb-e7f8eadb7897a84b7e76370aee406ea53a88cec6.zip gdb-e7f8eadb7897a84b7e76370aee406ea53a88cec6.tar.gz gdb-e7f8eadb7897a84b7e76370aee406ea53a88cec6.tar.bz2 |
2009-12-14 Doug Kwan <dougkwan@google.com>
bfd/ChangeLog:
* opncls.c (bfd_opnr_iovec): Rename parameters to avoid shawdowed
variable warnings.
* bfd-in2.h: Regnenerate.
include/ChangeLog:
* bfdlink.h (struct bfd_link_callbacks): Rename function parameters
to avoid shadowed variable warnings.
* dis-asm.h (struct disassemble_info): Ditto.
(disassemble_init_for_target): Ditto.
(init_disassemble_info): Ditto.
Diffstat (limited to 'bfd/bfd-in2.h')
-rw-r--r-- | bfd/bfd-in2.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bfd/bfd-in2.h b/bfd/bfd-in2.h index aa58ca6..c78e17d 100644 --- a/bfd/bfd-in2.h +++ b/bfd/bfd-in2.h @@ -971,17 +971,17 @@ bfd *bfd_fdopenr (const char *filename, const char *target, int fd); bfd *bfd_openstreamr (const char *, const char *, void *); bfd *bfd_openr_iovec (const char *filename, const char *target, - void *(*open) (struct bfd *nbfd, + void *(*open_func) (struct bfd *nbfd, void *open_closure), void *open_closure, - file_ptr (*pread) (struct bfd *nbfd, + file_ptr (*pread_func) (struct bfd *nbfd, void *stream, void *buf, file_ptr nbytes, file_ptr offset), - int (*close) (struct bfd *nbfd, + int (*close_func) (struct bfd *nbfd, void *stream), - int (*stat) (struct bfd *abfd, + int (*stat_func) (struct bfd *abfd, void *stream, struct stat *sb)); |