summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlejandro Colomar <alx@kernel.org>2022-12-04 23:40:34 +0100
committerAlejandro Colomar <alx@kernel.org>2022-12-04 23:40:34 +0100
commit0236da4ad36e739b4996850e29ff927d79809ba2 (patch)
treebb5f3d88fdf08d7e685c81d2689c3e3dac2ce848
parentb792c2383a2744d9fb4e54a70b1e984477a43858 (diff)
strncpy.3: ffix
Signed-off-by: Alejandro Colomar <alx@kernel.org>
-rw-r--r--man3/strncpy.32
1 files changed, 1 insertions, 1 deletions
diff --git a/man3/strncpy.3 b/man3/strncpy.3
index d0164e288..2f9913879 100644
--- a/man3/strncpy.3
+++ b/man3/strncpy.3
@@ -61,7 +61,7 @@ char *
strncpy(char *dest, const char *src, size_t n)
{
bzero(dest, n);
- memccpy(dest, src, '\e0', n);
+ memccpy(dest, src, \(aq\e0\(aq, n);
return dest;
}