diff options
author | Ian Lance Taylor <ian@airs.com> | 1998-03-28 22:45:56 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1998-03-28 22:45:56 +0000 |
commit | d3c1453d092418631006359069b1d03658ab62b9 (patch) | |
tree | b7cb72982b511c6d4c4e82c7fb8125a11389a7e5 /binutils/coffgrok.c | |
parent | 437a04cb407081a2c969c723572fe513a6e834bf (diff) | |
download | gdb-d3c1453d092418631006359069b1d03658ab62b9.zip gdb-d3c1453d092418631006359069b1d03658ab62b9.tar.gz gdb-d3c1453d092418631006359069b1d03658ab62b9.tar.bz2 |
Fix some gcc -Wall warnings:
* nlmconv.c (main): Add casts to avoid warnings.
(alpha_mangle_relocs): Likewise.
* objdump.c (dump_section_stabs): Likewise.
* size.c (print_sysv_format): Likewise.
* srcconv.c (wr_ob): Likewise.
* wrstabs.c (stab_modify_type): Likewise.
(stab_variable): Likewise.
* nlmconv.c (main): Initialize variables to avoid warnings.
* nm.c (sort_symbols_by_size): Likewise.
* objdump.c (disassemble_bytes): Likewise.
* wrstabs.c (stab_end_class_type): Likewise.
* coffgrok.c (do_sections_p2): Change j to unsigned int.
(do_lines): Change l to unsigned int.
* nlmheader.y (yylex): Change i to unsigned int.
* nm.c (print_symbol): Change j to long.
* size.c (lprint_number): Comment out.
* srconv.c (wr_ob): Change i to bfd_size_type.
* sysdump.c (unit_info_list): Comment out.
(object_body_list, program_structure, debug_list): Likewise.
* sysinfo.y (yyerror): Return value.
Diffstat (limited to 'binutils/coffgrok.c')
-rw-r--r-- | binutils/coffgrok.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/binutils/coffgrok.c b/binutils/coffgrok.c index 2094677..88a6572 100644 --- a/binutils/coffgrok.c +++ b/binutils/coffgrok.c @@ -166,7 +166,8 @@ do_sections_p2 (head) asection *section; for (section = abfd->sections; section; section = section->next) { - int j; + unsigned int j; + for (j = 0; j < section->reloc_count; j++) { int idx; @@ -248,7 +249,8 @@ do_lines (i, name) { struct coff_line *res = (struct coff_line *) xcalloc (sizeof (struct coff_line), 1); asection *s; - int l; + unsigned int l; + /* Find out if this function has any line numbers in the table */ for (s = abfd->sections; s; s = s->next) { |