Module Name: src
Committed By: uwe
Date: Sun Dec 8 22:35:27 UTC 2019
Modified Files:
src/libexec/ld.elf_so: rtld.c
Log Message:
_rtld_relro - fix debug printf format for a size_t argument
To generate a diff of this commit:
cvs rdiff -u -r1.200 -r1.201 src/libexec/ld.elf_so/rtld.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/libexec/ld.elf_so/rtld.c
diff -u src/libexec/ld.elf_so/rtld.c:1.200 src/libexec/ld.elf_so/rtld.c:1.201
--- src/libexec/ld.elf_so/rtld.c:1.200 Fri Oct 4 01:57:53 2019
+++ src/libexec/ld.elf_so/rtld.c Sun Dec 8 22:35:27 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: rtld.c,v 1.200 2019/10/04 01:57:53 christos Exp $ */
+/* $NetBSD: rtld.c,v 1.201 2019/12/08 22:35:27 uwe Exp $ */
/*
* Copyright 1996 John D. Polstra.
@@ -40,7 +40,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: rtld.c,v 1.200 2019/10/04 01:57:53 christos Exp $");
+__RCSID("$NetBSD: rtld.c,v 1.201 2019/12/08 22:35:27 uwe Exp $");
#endif /* not lint */
#include <sys/param.h>
@@ -1776,7 +1776,7 @@ _rtld_relro(const Obj_Entry *obj, bool w
if (wantmain != (obj ==_rtld_objmain))
return 0;
- dbg(("RELRO %s %p %lx\n", obj->path, obj->relro_page, obj->relro_size));
+ dbg(("RELRO %s %p %zx\n", obj->path, obj->relro_page, obj->relro_size));
if (mprotect(obj->relro_page, obj->relro_size, PROT_READ) == -1) {
_rtld_error("%s: Cannot enforce relro " "protection: %s",
obj->path, xstrerror(errno));