diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2017-01-23 10:30:59 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2017-01-23 10:30:59 +0000 |
commit | f06c70f772b76be7ba1b58d129e99bb8b21a5583 (patch) | |
tree | f40ee7f54218fa151a104fb15cebc06c0f68461f /libexec/ld.so/mips64 | |
parent | d7cbe5f71b223ae8939211fb96a3c84babb8ca6d (diff) |
Fix format string mismatches
Diffstat (limited to 'libexec/ld.so/mips64')
-rw-r--r-- | libexec/ld.so/mips64/rtld_machine.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/ld.so/mips64/rtld_machine.c b/libexec/ld.so/mips64/rtld_machine.c index 89c30f664d8..f0ff0ebdd2f 100644 --- a/libexec/ld.so/mips64/rtld_machine.c +++ b/libexec/ld.so/mips64/rtld_machine.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rtld_machine.c,v 1.22 2016/06/18 02:40:46 guenther Exp $ */ +/* $OpenBSD: rtld_machine.c,v 1.23 2017/01/23 10:30:58 guenther Exp $ */ /* * Copyright (c) 1998-2004 Opsycon AB, Sweden. @@ -187,7 +187,7 @@ _dl_md_reloc_got(elf_object_t *object, int lazy) gotp = object->dyn.pltgot; n = object->Dyn.info[DT_MIPS_LOCAL_GOTNO - DT_LOPROC + DT_NUM]; - DL_DEB(("loff: '%p'\n", loff)); + DL_DEB(("loff: 0x%lx\n", (unsigned long)loff)); /* * Set up pointers for run time (lazy) resolving. */ |