summaryrefslogtreecommitdiff
path: root/cord
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2019-07-17 01:13:18 +0300
committerIvan Maidanski <ivmai@mail.ru>2019-07-17 01:13:18 +0300
commitcb41dc5f66356cfebcac8ea0cfc388b324ca4252 (patch)
tree2a7564a31873a5c5c0119c467043786d9ead2aff /cord
parent5e7056a419be663dd059b7ab56a3f6a20bbccd93 (diff)
downloadbdwgc-cb41dc5f66356cfebcac8ea0cfc388b324ca4252.tar.gz
Fix a typo in control_chars() comment in de_win.c
* cord/tests/de_win.c (control_chars): Replace "32" to "64" in comment.
Diffstat (limited to 'cord')
-rw-r--r--cord/tests/de_win.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cord/tests/de_win.c b/cord/tests/de_win.c
index e51c3b65..82f4c71d 100644
--- a/cord/tests/de_win.c
+++ b/cord/tests/de_win.c
@@ -147,7 +147,7 @@ char * plain_chars(char * text, size_t len)
}
/* Return the argument with all non-control-characters replaced by */
-/* blank, and all control characters c replaced by c + 32. */
+/* blank, and all control characters c replaced by c + 64. */
char * control_chars(char * text, size_t len)
{
char * result = (char *)GC_MALLOC_ATOMIC(len + 1);