diff options
author | Alan Modra <amodra@gmail.com> | 2000-07-08 12:08:43 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2000-07-08 12:08:43 +0000 |
commit | 52b219b5e48eea63fde7bff994824f5d87a8e1f5 (patch) | |
tree | c8438e3cd3d875d601b343e7fd991e9130c65f69 /bfd/archures.c | |
parent | 181866dcc78f58b2c46d54eaf0db70f010256770 (diff) | |
download | gdb-52b219b5e48eea63fde7bff994824f5d87a8e1f5.zip gdb-52b219b5e48eea63fde7bff994824f5d87a8e1f5.tar.gz gdb-52b219b5e48eea63fde7bff994824f5d87a8e1f5.tar.bz2 |
Add sequence id field to asection.
Tidy comments and replace deprecated CONST with const.
Diffstat (limited to 'bfd/archures.c')
-rw-r--r-- | bfd/archures.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/archures.c b/bfd/archures.c index bafb9c8..69ca6b1 100644 --- a/bfd/archures.c +++ b/bfd/archures.c @@ -256,7 +256,7 @@ DESCRIPTION . const char *arch_name; . const char *printable_name; . unsigned int section_align_power; -. {* true if this is the default machine for the architecture *} +. {* True if this is the default machine for the architecture. *} . boolean the_default; . const struct bfd_arch_info * (*compatible) . PARAMS ((const struct bfd_arch_info *a, @@ -444,7 +444,7 @@ bfd_arch_list () } } - name_list = (CONST char **) + name_list = (const char **) bfd_malloc ((vec_length + 1) * sizeof (char **)); if (name_list == NULL) return NULL; |