gdb: Fix an incorrect comment

A comment uses the wrong parameter name.  Fixed in this commit.

gdb/ChangeLog:

	* valops.c (value_repeat): Fix incorrect argument name in comment.
This commit is contained in:
Andrew Burgess
2020-07-04 09:10:27 +01:00
parent 67bd3fd5e4
commit 1c236ddd45
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2020-09-16 Andrew Burgess <andrew.burgess@embecosm.com>
* valops.c (value_repeat): Fix incorrect argument name in comment.
2020-09-16 Andrew Burgess <andrew.burgess@embecosm.com>
* ada-lang.c (ada_language_data): Remove c_style_arrays

View File

@@ -1258,7 +1258,7 @@ value_assign (struct value *toval, struct value *fromval)
return val;
}
/* Extend a value VAL to COUNT repetitions of its type. */
/* Extend a value ARG1 to COUNT repetitions of its type. */
struct value *
value_repeat (struct value *arg1, int count)