diff options
author | Alan Modra <amodra@gmail.com> | 2000-09-06 00:22:01 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2000-09-06 00:22:01 +0000 |
commit | a966dba9daedf21904c2be865c97aee21d6eca0d (patch) | |
tree | 8490382c7ed698540fcb346548358bc53551c2c5 /bfd/section.c | |
parent | 5b343f5ae88339aa38c69fc02b05cd76f579dd56 (diff) | |
download | gdb-a966dba9daedf21904c2be865c97aee21d6eca0d.zip gdb-a966dba9daedf21904c2be865c97aee21d6eca0d.tar.gz gdb-a966dba9daedf21904c2be865c97aee21d6eca0d.tar.bz2 |
`template' isn't a very good name for a variable.
Who invented c++ anyway?
Diffstat (limited to 'bfd/section.c')
-rw-r--r-- | bfd/section.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bfd/section.c b/bfd/section.c index 69d80cf..6064924 100644 --- a/bfd/section.c +++ b/bfd/section.c @@ -649,30 +649,30 @@ FUNCTION SYNOPSIS char *bfd_get_unique_section_name(bfd *abfd, - const char *template, + const char *templat, int *count); DESCRIPTION Invent a section name that is unique in @var{abfd} by tacking - a digit suffix onto the original @var{template}. If @var{count} + a digit suffix onto the original @var{templat}. If @var{count} is non-NULL, then it specifies the first number tried as a suffix to generate a unique name. The value pointed to by @var{count} will be incremented in this case. */ char * -bfd_get_unique_section_name (abfd, template, count) +bfd_get_unique_section_name (abfd, templat, count) bfd *abfd; - const char *template; + const char *templat; int *count; { int num; unsigned int len; char *sname; - len = strlen (template); + len = strlen (templat); sname = bfd_malloc (len + 7); - strcpy (sname, template); + strcpy (sname, templat); num = 1; if (count != NULL) num = *count; |