aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/value.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index f772957..0824259 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
+
+ * value.c (isvoid_internal_fn): Replace "parameter" with
+ "argument".
+
2013-09-16 Stan Shebs <stan@codesourcery.com>
* README: Update references to writing code for GDB.
diff --git a/gdb/value.c b/gdb/value.c
index edbfc70..bc1239d 100644
--- a/gdb/value.c
+++ b/gdb/value.c
@@ -3594,7 +3594,7 @@ isvoid_internal_fn (struct gdbarch *gdbarch,
int ret;
if (argc != 1)
- error (_("You must provide one parameter for $_isvoid."));
+ error (_("You must provide one argument for $_isvoid."));
ret = TYPE_CODE (value_type (argv[0])) == TYPE_CODE_VOID;