aboutsummaryrefslogtreecommitdiff
path: root/gdb/valops.c
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@vmware.com>2002-10-23 19:22:28 +0000
committerMichael Snyder <msnyder@vmware.com>2002-10-23 19:22:28 +0000
commit19de93d0c62cd26498869d1eecd6299dcf476365 (patch)
tree5214dd61b903a4d92b1ca57895cc850983e47254 /gdb/valops.c
parent89aad1f99e80e605e01a69d74e13263b1841d361 (diff)
downloadgdb-19de93d0c62cd26498869d1eecd6299dcf476365.zip
gdb-19de93d0c62cd26498869d1eecd6299dcf476365.tar.gz
gdb-19de93d0c62cd26498869d1eecd6299dcf476365.tar.bz2
2002-10-23 Michael Snyder <msnyder@redhat.com>
* valops.c (value_of_local): Restore quotes in error message.
Diffstat (limited to 'gdb/valops.c')
-rw-r--r--gdb/valops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/valops.c b/gdb/valops.c
index e91e231..b61355f 100644
--- a/gdb/valops.c
+++ b/gdb/valops.c
@@ -3340,7 +3340,7 @@ value_of_local (const char *name, int complain)
if (i <= 0)
{
if (complain)
- error ("no args, no %s", name);
+ error ("no args, no '%s'", name);
else
return 0;
}