Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
oleavr committed Jan 23, 2025
1 parent 041bfd4 commit 85292c6
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions gum/backend-linux/gummemory-linux.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,10 @@
static gboolean gum_memory_get_protection (gconstpointer address, gsize n,
gsize * size, GumPageProtection * prot);

static gssize gum_libc_process_vm_readv (pid_t pid, const struct iovec * local_iov,
unsigned long liovcnt, const struct iovec * remote_iov, unsigned long riovcnt,
unsigned long flags);
static gssize gum_libc_process_vm_readv (pid_t pid,
const struct iovec * local_iov, gulong liovcnt,
const struct iovec * remote_iov, gulong riovcnt,
gulong flags);

gboolean
gum_memory_is_readable (gconstpointer address,
Expand Down Expand Up @@ -311,10 +312,10 @@ gum_memory_get_protection (gconstpointer address,
static gssize
gum_libc_process_vm_readv (pid_t pid,
const struct iovec * local_iov,
unsigned long liovcnt,
gulong liovcnt,
const struct iovec * remote_iov,
unsigned long riovcnt,
unsigned long flags)
gulong riovcnt,
gulong flags)
{
return syscall (GUM_SYS_PROCESS_VM_READV, pid, local_iov, liovcnt, remote_iov,
riovcnt, flags);
Expand Down

0 comments on commit 85292c6

Please sign in to comment.