summaryrefslogtreecommitdiffstats
path: root/lib/libc
diff options
context:
space:
mode:
authormartynas <martynas@openbsd.org>2007-11-27 16:22:12 +0000
committermartynas <martynas@openbsd.org>2007-11-27 16:22:12 +0000
commit80adcad897dac3c62724f9fd7f9e8c7f67979e45 (patch)
tree3878d30c6295c9b70087ba0a5711a79ce587558e /lib/libc
parentfix format strings (diff)
downloadwireguard-openbsd-80adcad897dac3c62724f9fd7f9e8c7f67979e45.tar.xz
wireguard-openbsd-80adcad897dac3c62724f9fd7f9e8c7f67979e45.zip
typos; ok jmc@
sys/dev/pci/pciide.c from naddy@
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/string/memrchr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/string/memrchr.c b/lib/libc/string/memrchr.c
index 95d3c3ee9be..bd27ebc620e 100644
--- a/lib/libc/string/memrchr.c
+++ b/lib/libc/string/memrchr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: memrchr.c,v 1.1 2007/09/03 14:36:40 millert Exp $ */
+/* $OpenBSD: memrchr.c,v 1.2 2007/11/27 16:22:12 martynas Exp $ */
/*
* Copyright (c) 2007 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -20,7 +20,7 @@
/*
* Reverse memchr()
- * Find the last occurence of 'c' in the buffer 's' of size 'n'.
+ * Find the last occurrence of 'c' in the buffer 's' of size 'n'.
*/
void *
memrchr(const void *s, int c, size_t n)