Skip to content

Commit

Permalink
x86: fix a duplicated shmget/shdt line in the syscall resolution code
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Moore <paul@paul-moore.com>
  • Loading branch information
pcmoore committed Nov 7, 2019
1 parent bf747eb commit ac070b8
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/arch-x86-syscalls.c
Original file line number Diff line number Diff line change
Expand Up @@ -664,8 +664,6 @@ const char *x86_syscall_resolve_num(int num)
return "shmat";
else if (num == __PNR_shmdt)
return "shmdt";
else if (num == __PNR_shmdt)
return "shmget";
else if (num == __PNR_shmget)
return "shmget";
else if (num == __PNR_shmctl)
Expand Down

0 comments on commit ac070b8

Please sign in to comment.