summaryrefslogtreecommitdiff
path: root/tests/lib/libc/string
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2013-02-15 23:56:32 +0000
committerchristos <christos@NetBSD.org>2013-02-15 23:56:32 +0000
commitb4cdca226150c080fd60b63905501fce69e129f7 (patch)
treea6aa879825222c8f8388ce092ed58278291ef8d8 /tests/lib/libc/string
parent2c363ffada5498e7b9c16dae06c9bff4d0839aea (diff)
don't brk the build.
Diffstat (limited to 'tests/lib/libc/string')
-rw-r--r--tests/lib/libc/string/t_stresep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lib/libc/string/t_stresep.c b/tests/lib/libc/string/t_stresep.c
index 824c0621801..4678e55c0ee 100644
--- a/tests/lib/libc/string/t_stresep.c
+++ b/tests/lib/libc/string/t_stresep.c
@@ -1,4 +1,4 @@
-/* $NetBSD: t_stresep.c,v 1.2 2011/07/07 08:27:36 jruoho Exp $ */
+/* $NetBSD: t_stresep.c,v 1.3 2013/02/15 23:56:32 christos Exp $ */
/*-
* Copyright (c) 2005 The NetBSD Foundation, Inc.
@@ -51,9 +51,9 @@ ATF_TC_HEAD(stresep_basic, tc)
ATF_TC_BODY(stresep_basic, tc)
{
- char brk[] = "foo\\ \\ bar baz bar\\ foo\\ bar\\ \\ foo \\ \\ \\ "
+ char brkstr[] = "foo\\ \\ bar baz bar\\ foo\\ bar\\ \\ foo \\ \\ \\ "
"baz bar\\ \\ ";
- char *p, *q = brk;
+ char *p, *q = brkstr;
expect("foo bar");
expect("baz");