diff options
author | 2017-01-23 10:30:15 +0000 | |
---|---|---|
committer | 2017-01-23 10:30:15 +0000 | |
commit | f45f5cb90daadab0e3055d1af46a3cb107939c9a (patch) | |
tree | ac9ee62f3a52aa615d13a15b6512451f8b688580 | |
parent | Remove ssl_ctrl, ssl_ctx_ctrl, ssl_callback_ctrl and ssl_ctx_callback_ctrl (diff) | |
download | wireguard-openbsd-f45f5cb90daadab0e3055d1af46a3cb107939c9a.tar.xz wireguard-openbsd-f45f5cb90daadab0e3055d1af46a3cb107939c9a.zip |
Fix format string mismatches
testing assistance patrick@
-rw-r--r-- | libexec/ld.so/aarch64/rtld_machine.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/ld.so/aarch64/rtld_machine.c b/libexec/ld.so/aarch64/rtld_machine.c index bfed15414e8..d1926e9da78 100644 --- a/libexec/ld.so/aarch64/rtld_machine.c +++ b/libexec/ld.so/aarch64/rtld_machine.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rtld_machine.c,v 1.1 2017/01/11 14:11:27 patrick Exp $ */ +/* $OpenBSD: rtld_machine.c,v 1.2 2017/01/23 10:30:15 guenther Exp $ */ /* * Copyright (c) 2004 Dale Rahn @@ -160,11 +160,11 @@ _dl_md_reloc(elf_object_t *object, int rel, int relsz) type = ELF_R_TYPE(rels->r_info); if (type >= nitems(reloc_target_flags)) { - _dl_printf(" bad relocation %d %d\n", i, type); + _dl_printf(" bad relocation %ld %d\n", i, type); _dl_exit(1); } if ((reloc_target_flags[type] & _RF_V)==0) { - _dl_printf(" bad relocation %d %d\n", i, type); + _dl_printf(" bad relocation %ld %d\n", i, type); _dl_exit(1); } if (type == R_TYPE(NONE)) |