mirror of
https://github.com/adulau/aha.git
synced 2024-12-26 18:56:14 +00:00
lib/string.c: fix kernel-doc warnings
Fix kernel-doc warnings (@arg name) in string.c::skip_spaces(). Warning(lib/string.c:347): No description found for parameter 'str' Warning(lib/string.c:347): Excess function parameter 's' description in 'skip_spaces' Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
83f57a11d8
commit
a6cd13f3c9
1 changed files with 3 additions and 3 deletions
|
@ -338,10 +338,10 @@ EXPORT_SYMBOL(strnchr);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* skip_spaces - Removes leading whitespace from @s.
|
* skip_spaces - Removes leading whitespace from @str.
|
||||||
* @s: The string to be stripped.
|
* @str: The string to be stripped.
|
||||||
*
|
*
|
||||||
* Returns a pointer to the first non-whitespace character in @s.
|
* Returns a pointer to the first non-whitespace character in @str.
|
||||||
*/
|
*/
|
||||||
char *skip_spaces(const char *str)
|
char *skip_spaces(const char *str)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue