summaryrefslogtreecommitdiff
path: root/plugins/readelf/reader.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/readelf/reader.c')
-rw-r--r--plugins/readelf/reader.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/readelf/reader.c b/plugins/readelf/reader.c
index 47b33a0..6f81b3f 100644
--- a/plugins/readelf/reader.c
+++ b/plugins/readelf/reader.c
@@ -24,6 +24,7 @@
#include "reader.h"
+#include <format/elf/elf.h>
#include <plugins/plugin-def.h>
@@ -62,7 +63,7 @@ G_MODULE_EXPORT bool preload_binary_format(const GPluginModule *plugin, PluginAc
if (!G_IS_ELF_FORMAT(format))
{
result = true;
- goto hbf_exit;
+ goto pbf_exit;
}
elf_fmt = G_ELF_FORMAT(format);
@@ -75,7 +76,7 @@ G_MODULE_EXPORT bool preload_binary_format(const GPluginModule *plugin, PluginAc
show_elf_section_string_table(elf_fmt, info, status);
- hbf_exit:
+ pbf_exit:
return result;