summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2006-03-01 14:33:03 +0000
committerJoe Orton <jorton@apache.org>2006-03-01 14:33:03 +0000
commitf40c2705b0eb4d0707aec5d847a63edb03bad80d (patch)
treef758241f575d1b26dad87b6fd3e72caf8e6a2835
parenta16d09a45fd030a26b05bc6900ce6be336db9698 (diff)
downloadapr-f40c2705b0eb4d0707aec5d847a63edb03bad80d.tar.gz
* test/testnames.c (root_from_cwd_and_back): Fix segfault on
non-Win32. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@382033 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--test/testnames.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testnames.c b/test/testnames.c
index 386da8c00..68aa44480 100644
--- a/test/testnames.c
+++ b/test/testnames.c
@@ -223,7 +223,7 @@ static void root_from_cwd_and_back(abts_case *tc, void *data)
ABTS_STR_EQUAL(tc, origpath + 3, path);
#else
ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
- ABTS_STR_EQUAL(tc, '/', root);
+ ABTS_STR_EQUAL(tc, "/", root);
ABTS_STR_EQUAL(tc, origpath + 1, path);
#endif