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/m88k-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/m88k-xdep.c')
-rw-r--r-- | gdb/m88k-xdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/m88k-xdep.c b/gdb/m88k-xdep.c index 5ecd12d..835d8a2 100644 --- a/gdb/m88k-xdep.c +++ b/gdb/m88k-xdep.c @@ -266,7 +266,7 @@ core_file_command (filename, from_tty) corefile = savestring (filename, strlen (filename)); else { - corefile = concat (current_directory, "/", filename); + corefile = concat (current_directory, "/", filename, NULL); } init_tdesc(); current_context = init_dcontext(); |