Fix function comments

Two obvious fixes.

gdb/ChangeLog:

	* common/common-utils.c (skip_spaces): Fix comment.
	(skip_to_space_const): Likewise.
This commit is contained in:
Simon Marchi 2016-01-26 16:30:03 -05:00
parent 67ebd9cbb1
commit 41548caa9b
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2016-01-26 Simon Marchi <simon.marchi@ericsson.com>
* common/common-utils.c (skip_spaces): Fix comment.
(skip_to_space_const): Likewise.
2016-01-25 Yao Qi <yao.qi@linaro.org>
* arch/arm-get-next-pcs.c (thumb_deal_with_atomic_sequence_raw):

View File

@ -253,7 +253,7 @@ strtoulst (const char *num, const char **trailer, int base)
return result;
}
/* See documentation in cli-utils.h. */
/* See documentation in common-utils.h. */
char *
skip_spaces (char *chp)
@ -277,7 +277,7 @@ skip_spaces_const (const char *chp)
return chp;
}
/* See documentation in cli-utils.h. */
/* See documentation in common-utils.h. */
const char *
skip_to_space_const (const char *chp)