diff options
author | Fred Fish <fnf@specifix.com> | 1991-11-12 17:50:14 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1991-11-12 17:50:14 +0000 |
commit | 58ae87f612e884727a3fc18a2d623534589463a4 (patch) | |
tree | 652f140e43ab5430a3d59bb72c8e2e32ae2470a6 /gdb/symm-xdep.c | |
parent | ecb1b520dee9279c9ab81a0352122f88619a90d4 (diff) | |
download | gdb-58ae87f612e884727a3fc18a2d623534589463a4.zip gdb-58ae87f612e884727a3fc18a2d623534589463a4.tar.gz gdb-58ae87f612e884727a3fc18a2d623534589463a4.tar.bz2 |
Remove internal gdb definition of fixed arg count concat() function and
convert to use of variable arg count concat() in libiberty.
Diffstat (limited to 'gdb/symm-xdep.c')
-rw-r--r-- | gdb/symm-xdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/symm-xdep.c b/gdb/symm-xdep.c index 409476a..2871307 100644 --- a/gdb/symm-xdep.c +++ b/gdb/symm-xdep.c @@ -232,7 +232,7 @@ printf("u.u_tsize= %#x, u.u_dsize= %#x, u.u_ssize= %#x, stack_off= %#x\n", corefile = savestring (filename, strlen (filename)); else { - corefile = concat (current_directory, "/", filename); + corefile = concat (current_directory, "/", filename, NULL); } set_current_frame(create_new_frame(read_register(FP_REGNUM), |