]> granicus.if.org Git - gc/commitdiff
Fix a typo in control_chars() comment in de_win.c
authorIvan Maidanski <ivmai@mail.ru>
Tue, 16 Jul 2019 22:13:18 +0000 (01:13 +0300)
committerIvan Maidanski <ivmai@mail.ru>
Tue, 16 Jul 2019 22:13:18 +0000 (01:13 +0300)
* cord/tests/de_win.c (control_chars): Replace "32" to "64" in comment.

cord/tests/de_win.c

index e51c3b651f8240e51394cb81bd51a315be4d296a..82f4c71d92a1dba68e77d206cf5f2d916ec68365 100644 (file)
@@ -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);