diff options
Diffstat (limited to 'libelf/gelf_update_dyn.c')
-rw-r--r-- | libelf/gelf_update_dyn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libelf/gelf_update_dyn.c b/libelf/gelf_update_dyn.c index fce00bb9..10bfb6ab 100644 --- a/libelf/gelf_update_dyn.c +++ b/libelf/gelf_update_dyn.c @@ -85,7 +85,7 @@ gelf_update_dyn (data, ndx, src) } scn = data_scn->s; - RWLOCK_WRLOCK (scn->elf->lock); + rwlock_wrlock (scn->elf->lock); if (scn->elf->class == ELFCLASS32) { @@ -131,7 +131,7 @@ gelf_update_dyn (data, ndx, src) scn->flags |= ELF_F_DIRTY; out: - RWLOCK_UNLOCK (scn->elf->lock); + rwlock_unlock (scn->elf->lock); return result; } |