summaryrefslogtreecommitdiff
path: root/gdb/valops.c
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@specifix.com>2002-10-23 19:22:28 +0000
committerMichael Snyder <msnyder@specifix.com>2002-10-23 19:22:28 +0000
commit28b9d3f4e07780e18fc46de55214a76acded76aa (patch)
treee44b0b37e10bd96198333622e9ee26f3049ff4bc /gdb/valops.c
parentad95c73369e1ba9ba289713f56056b600978f04e (diff)
downloadgdb-28b9d3f4e07780e18fc46de55214a76acded76aa.tar.gz
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 e91e231d131..b61355f68af 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;
}