aboutsummaryrefslogtreecommitdiff
path: root/bfd/libbfd.c
diff options
context:
space:
mode:
authorSteve Chamberlain <steve@cygnus>1991-05-22 15:04:00 +0000
committerSteve Chamberlain <steve@cygnus>1991-05-22 15:04:00 +0000
commit5ad1d8304204d3e81726319bf7262e571156f9da (patch)
treef8cc7d2a241749a07d301c24de83f41ad9000807 /bfd/libbfd.c
parent0f2687577f78c9398153526f4ee92e950e3d7ce4 (diff)
downloadfsf-binutils-gdb-5ad1d8304204d3e81726319bf7262e571156f9da.zip
fsf-binutils-gdb-5ad1d8304204d3e81726319bf7262e571156f9da.tar.gz
fsf-binutils-gdb-5ad1d8304204d3e81726319bf7262e571156f9da.tar.bz2
Not only compiles, but spells _do_getl64 right too
Diffstat (limited to 'bfd/libbfd.c')
-rw-r--r--bfd/libbfd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/libbfd.c b/bfd/libbfd.c
index aad52fe..ff64c28 100644
--- a/bfd/libbfd.c
+++ b/bfd/libbfd.c
@@ -215,8 +215,8 @@ boolean
DEFUN(bfd_add_to_string_table,(table, new_string, table_length, free_ptr),
char **table AND
char *new_string AND
- char **free_ptr AND
- unsigned int *table_length)
+ unsigned int *table_length AND
+ char **free_ptr)
{
size_t string_length = strlen (new_string) + 1; /* include null here */
char *base = *table;
@@ -339,7 +339,7 @@ DEFUN(_do_getb64,(addr),
}
bfd_64_type
-DEFUN(do_getl64,(addr),
+DEFUN(_do_getl64,(addr),
register bfd_byte *addr)
{
bfd_64_type low, high;