diff options
Diffstat (limited to 'src/format/format.c')
-rw-r--r-- | src/format/format.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/format/format.c b/src/format/format.c index 00c4538..df375fb 100644 --- a/src/format/format.c +++ b/src/format/format.c @@ -30,6 +30,7 @@ #include "format-int.h" #include "dwarf/dwarf.h" #include "elf/elf.h" +#include "java/java.h" #include "pe/pe.h" #include "../panels/log.h" @@ -335,6 +336,7 @@ bool init_all_formats(void) { register_format(FID_ELF, _("ELF"), FMT_EXEC, elf_is_matching, g_elf_format_new); register_format(FID_DWARF, _("Dwarf"), FMT_DEBUG, dwarf_is_matching, g_dwarf_format_new); + register_format(FID_JAVA, _("Java"), FMT_EXEC, java_is_matching, g_java_format_new); register_format(FID_PE, _("PE"), FMT_EXEC, pe_is_matching, g_pe_format_new); return true; |