summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorotto <>2025-05-24 06:47:27 +0000
committerotto <>2025-05-24 06:47:27 +0000
commit0f302b0e0b33ce6709a2f0a3273bfd51b6e76309 (patch)
tree1a47cf0d4ed06fb7a60bf8a2e818146f7ec005c1 /src
parentde9867517970c8d69b5f23d8cf82385c089ac75d (diff)
downloadopenbsd-0f302b0e0b33ce6709a2f0a3273bfd51b6e76309.tar.gz
openbsd-0f302b0e0b33ce6709a2f0a3273bfd51b6e76309.tar.bz2
openbsd-0f302b0e0b33ce6709a2f0a3273bfd51b6e76309.zip
Adapt to new maloc_options declaration
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libc/malloc/malloc_ulimit1/malloc_ulimit1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libc/malloc/malloc_ulimit1/malloc_ulimit1.c b/src/regress/lib/libc/malloc/malloc_ulimit1/malloc_ulimit1.c
index 799d2b9117..7e53c32dbc 100644
--- a/src/regress/lib/libc/malloc/malloc_ulimit1/malloc_ulimit1.c
+++ b/src/regress/lib/libc/malloc/malloc_ulimit1/malloc_ulimit1.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: malloc_ulimit1.c,v 1.5 2019/06/12 11:31:36 bluhm Exp $ */ 1/* $OpenBSD: malloc_ulimit1.c,v 1.6 2025/05/24 06:47:27 otto Exp $ */
2 2
3/* Public Domain, 2006, Otto Moerbeek <otto@drijf.net> */ 3/* Public Domain, 2006, Otto Moerbeek <otto@drijf.net> */
4 4
@@ -23,7 +23,7 @@
23#define FACTOR 1024 23#define FACTOR 1024
24 24
25/* This test takes forever with junking turned on. */ 25/* This test takes forever with junking turned on. */
26char *malloc_options = "jj"; 26const char * const malloc_options = "jj";
27 27
28int 28int
29main() 29main()