summaryrefslogtreecommitdiff
path: root/libexec/ld.so/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'libexec/ld.so/util.c')
-rw-r--r--libexec/ld.so/util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/ld.so/util.c b/libexec/ld.so/util.c
index 1c74814134c..fb36517407d 100644
--- a/libexec/ld.so/util.c
+++ b/libexec/ld.so/util.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: util.c,v 1.25 2013/01/23 19:01:44 miod Exp $ */
+/* $OpenBSD: util.c,v 1.26 2013/06/09 13:10:19 miod Exp $ */
/*
* Copyright (c) 1998 Per Fogelstrom, Opsycon AB
@@ -132,7 +132,7 @@ _dl_free(void *p)
void
_dl_randombuf(void *buf, size_t buflen)
{
- int mib[2] = { CTL_KERN, KERN_ARND };
+ const int mib[2] = { CTL_KERN, KERN_ARND };
_dl_sysctl(mib, 2, buf, &buflen, NULL, 0);
}