diff options
Diffstat (limited to 'gdb/common/gdb_tilde_expand.c')
-rw-r--r-- | gdb/common/gdb_tilde_expand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/common/gdb_tilde_expand.c b/gdb/common/gdb_tilde_expand.c index fc338ff..326df8f 100644 --- a/gdb/common/gdb_tilde_expand.c +++ b/gdb/common/gdb_tilde_expand.c @@ -91,5 +91,5 @@ gdb_tilde_expand_up (const char *dir) gdb_assert (glob.pathc () > 0); /* "glob" may return more than one match to the path provided by the user, but we are only interested in the first match. */ - return gdb::unique_xmalloc_ptr<char> (xstrdup (glob.pathv ()[0])); + return make_unique_xstrdup (glob.pathv ()[0]); } |