Skip to content
Snippets Groups Projects
Commit bb800372 authored by Simon McVittie's avatar Simon McVittie
Browse files

dump: Avoid naming collision with basename()


On Ubuntu 12.04, this function is declared in a header that we include.

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent 4b5b9b7b
No related branches found
No related tags found
1 merge request!311Build capsule-capture-libs from a bundled copy of libcapsule
...@@ -1089,9 +1089,9 @@ struct dl_phdr_info \n\ ...@@ -1089,9 +1089,9 @@ struct dl_phdr_info \n\
} }
void void
dump_elf_data (const char *basename) dump_elf_data (const char *soname)
{ {
dl_iterate_phdr( phdr_cb, (void *) basename ); dl_iterate_phdr( phdr_cb, (void *) soname );
} }
static int static int
......
...@@ -17,6 +17,6 @@ ...@@ -17,6 +17,6 @@
#pragma once #pragma once
void dump_elf_data (const char *basename); void dump_elf_data (const char *soname);
void debug_link_maps (void); void debug_link_maps (void);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment