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/convex-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/convex-xdep.c')
-rw-r--r-- | gdb/convex-xdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/convex-xdep.c b/gdb/convex-xdep.c index 57646ab..bfce6eb 100644 --- a/gdb/convex-xdep.c +++ b/gdb/convex-xdep.c @@ -913,7 +913,7 @@ core_file_command (filename, from_tty) if (filename[0] == '/') corefile = savestring (filename, strlen (filename)); else - corefile = concat (current_directory, "/", filename); + corefile = concat (current_directory, "/", filename, NULL); printf_filtered ("Program %s ", u.u_comm); |