mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-21 02:24:17 +08:00
* ldlang.c (new_afile): Pass NULL as last argument to concat.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
Mon Feb 21 15:15:29 1994 Ian Lance Taylor (ian@cygnus.com)
|
||||||
|
|
||||||
|
* ldlang.c (new_afile): Pass NULL as last argument to concat.
|
||||||
|
|
||||||
Thu Feb 17 15:51:23 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
|
Thu Feb 17 15:51:23 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
|
||||||
|
|
||||||
* ldlang.c, ldmain.c: Include libiberty.h.
|
* ldlang.c, ldmain.c: Include libiberty.h.
|
||||||
|
@ -338,7 +338,7 @@ new_afile (name, file_type, target)
|
|||||||
p->is_archive = true;
|
p->is_archive = true;
|
||||||
p->filename = name;
|
p->filename = name;
|
||||||
p->real = true;
|
p->real = true;
|
||||||
p->local_sym_name = concat ("-l", name, "");
|
p->local_sym_name = concat ("-l", name, (const char *) NULL);
|
||||||
p->just_syms_flag = false;
|
p->just_syms_flag = false;
|
||||||
p->search_dirs_flag = true;
|
p->search_dirs_flag = true;
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user