gdb: Fix an incorrect comment
authorAndrew Burgess <andrew.burgess@embecosm.com>
Sat, 4 Jul 2020 08:10:27 +0000 (09:10 +0100)
committerAndrew Burgess <andrew.burgess@embecosm.com>
Wed, 16 Sep 2020 09:16:47 +0000 (10:16 +0100)
A comment uses the wrong parameter name.  Fixed in this commit.

gdb/ChangeLog:

* valops.c (value_repeat): Fix incorrect argument name in comment.

gdb/ChangeLog
gdb/valops.c

index 4f4336f48143c1b0093b2763ba8c33a7c6f2eda0..741e9bffd033b58a5551fdeaddfd7fb6159fc693 100644 (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
index 7b604da0fd562427fdbba736eed91819a66332ea..cf4cbaba02b7ca9b7d65f821fee72e6fabc0f921 100644 (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)