diff options
Diffstat (limited to 'gdb/buildsym.c')
-rw-r--r-- | gdb/buildsym.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/buildsym.c b/gdb/buildsym.c index 54c1d03..5f463ac 100644 --- a/gdb/buildsym.c +++ b/gdb/buildsym.c @@ -1429,9 +1429,9 @@ end_symtab_with_blockvector (struct block *static_block, { /* Reallocate the dirname on the symbol obstack. */ COMPUNIT_DIRNAME (cu) - = obstack_copy0 (&objfile->objfile_obstack, - buildsym_compunit->comp_dir, - strlen (buildsym_compunit->comp_dir)); + = (const char *) obstack_copy0 (&objfile->objfile_obstack, + buildsym_compunit->comp_dir, + strlen (buildsym_compunit->comp_dir)); } /* Save the debug format string (if any) in the symtab. */ |