diff options
Diffstat (limited to 'gdb/solib-darwin.c')
-rw-r--r-- | gdb/solib-darwin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/solib-darwin.c b/gdb/solib-darwin.c index 443ebb6..3dd30d2 100644 --- a/gdb/solib-darwin.c +++ b/gdb/solib-darwin.c @@ -670,7 +670,7 @@ darwin_bfd_open (const char *pathname) /* The current filename for fat-binary BFDs is a name generated by BFD, usually a string containing the name of the architecture. Reset its value to the actual filename. */ - xfree (bfd_get_filename (res.get ())); + xfree ((char *) bfd_get_filename (res.get ())); res->filename = xstrdup (pathname); return res; |