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:
parent
67ebd9cbb1
commit
41548caa9b
2 changed files with 7 additions and 2 deletions
|
@ -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>
|
2016-01-25 Yao Qi <yao.qi@linaro.org>
|
||||||
|
|
||||||
* arch/arm-get-next-pcs.c (thumb_deal_with_atomic_sequence_raw):
|
* arch/arm-get-next-pcs.c (thumb_deal_with_atomic_sequence_raw):
|
||||||
|
|
|
@ -253,7 +253,7 @@ strtoulst (const char *num, const char **trailer, int base)
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* See documentation in cli-utils.h. */
|
/* See documentation in common-utils.h. */
|
||||||
|
|
||||||
char *
|
char *
|
||||||
skip_spaces (char *chp)
|
skip_spaces (char *chp)
|
||||||
|
@ -277,7 +277,7 @@ skip_spaces_const (const char *chp)
|
||||||
return chp;
|
return chp;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* See documentation in cli-utils.h. */
|
/* See documentation in common-utils.h. */
|
||||||
|
|
||||||
const char *
|
const char *
|
||||||
skip_to_space_const (const char *chp)
|
skip_to_space_const (const char *chp)
|
||||||
|
|
Loading…
Reference in a new issue