aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2004-05-10 00:01:33 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-05-10 00:01:33 -0700
commita023cd55bbf29d8c0cde45bc1727fc8c06ec3a54 (patch)
tree6d37f83d2c96532cd94d324d8765c1eb39cca5dc /lib
parent72468a403fe5976b9a33b00581d66d447fbe0bcf (diff)
downloadhistory-a023cd55bbf29d8c0cde45bc1727fc8c06ec3a54.tar.gz
[PATCH] Kill some 'No description found...' warnings. (kernel-api.sgml)
From: Alexey Dobriyan <adobriyan@mail.ru> Fix various kernel-doc parameters.
Diffstat (limited to 'lib')
-rw-r--r--lib/string.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/string.c b/lib/string.c
index d2f23f2c1e699e..603c7174f41e96 100644
--- a/lib/string.c
+++ b/lib/string.c
@@ -445,8 +445,8 @@ void * memset(void * s,int c,size_t count)
#ifndef __HAVE_ARCH_BCOPY
/**
* bcopy - Copy one area of memory to another
- * @src: Where to copy from
- * @dest: Where to copy to
+ * @srcp: Where to copy from
+ * @destp: Where to copy to
* @count: The size of the area.
*
* Note that this is the same as memcpy(), with the arguments reversed.