Skip to content

Commit

Permalink
loadinfo fix (#1349)
Browse files Browse the repository at this point in the history
  • Loading branch information
lacraig2 authored Sep 8, 2023
1 parent 4e8d603 commit b100103
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions panda/plugins/syscalls2/syscalls2_info.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ int load_syscall_info(void) {
const gchar *arch = "arm";
#elif defined(TARGET_ARM) &&defined(TARGET_AARCH64)
const gchar *arch = "arm64";
#elif defined(TARGET_MIPS) && defined(TARGET_MIPS64)
const gchar *arch = "mips64";
#elif defined(TARGET_MIPS)
const gchar *arch = "mips";
#elif defined(TARGET_X86_64)
Expand Down

0 comments on commit b100103

Please sign in to comment.