summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormartynas <>2007-11-27 16:22:12 +0000
committermartynas <>2007-11-27 16:22:12 +0000
commit08fce002dfa86ac3b85b3a64a7d1c577e8d6ad01 (patch)
tree227fde015efc6496a24006d2b7d19294926e4bdd
parent82238b8a1552ad2206b7677e25095266b6f52a0f (diff)
downloadopenbsd-08fce002dfa86ac3b85b3a64a7d1c577e8d6ad01.tar.gz
openbsd-08fce002dfa86ac3b85b3a64a7d1c577e8d6ad01.tar.bz2
openbsd-08fce002dfa86ac3b85b3a64a7d1c577e8d6ad01.zip
typos; ok jmc@
sys/dev/pci/pciide.c from naddy@
-rw-r--r--src/lib/libc/string/memrchr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/string/memrchr.c b/src/lib/libc/string/memrchr.c
index 95d3c3ee9b..bd27ebc620 100644
--- a/src/lib/libc/string/memrchr.c
+++ b/src/lib/libc/string/memrchr.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: memrchr.c,v 1.1 2007/09/03 14:36:40 millert Exp $ */ 1/* $OpenBSD: memrchr.c,v 1.2 2007/11/27 16:22:12 martynas Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2007 Todd C. Miller <Todd.Miller@courtesan.com> 4 * Copyright (c) 2007 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -20,7 +20,7 @@
20 20
21/* 21/*
22 * Reverse memchr() 22 * Reverse memchr()
23 * Find the last occurence of 'c' in the buffer 's' of size 'n'. 23 * Find the last occurrence of 'c' in the buffer 's' of size 'n'.
24 */ 24 */
25void * 25void *
26memrchr(const void *s, int c, size_t n) 26memrchr(const void *s, int c, size_t n)