diff options
author | Nick Clifton <nickc@redhat.com> | 1999-10-26 10:10:51 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 1999-10-26 10:10:51 +0000 |
commit | 96925346dea50ea13372dad10267bdc3acae0fe7 (patch) | |
tree | 0b958a20da46399dfbd2bcf6cec63428bc81c1fc /binutils/dlltool.c | |
parent | e514a9d64262fcceccd85180b20b7adc3c4a5eed (diff) | |
download | gdb-96925346dea50ea13372dad10267bdc3acae0fe7.zip gdb-96925346dea50ea13372dad10267bdc3acae0fe7.tar.gz gdb-96925346dea50ea13372dad10267bdc3acae0fe7.tar.bz2 |
Remove spurious test of exp_name
Diffstat (limited to 'binutils/dlltool.c')
-rw-r--r-- | binutils/dlltool.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/binutils/dlltool.c b/binutils/dlltool.c index 7ccedbc..ed99d4f 100644 --- a/binutils/dlltool.c +++ b/binutils/dlltool.c @@ -1740,8 +1740,7 @@ assemble_file (source, dest) char * cmd; cmd = (char *) alloca (strlen (ASM_SWITCHES) + strlen (as_flags) - + strlen (exp_name) + strlen (source) - + strlen (dest) + 50); + + strlen (source) + strlen (dest) + 50); sprintf (cmd, "%s %s -o %s %s", ASM_SWITCHES, as_flags, dest, source); |