aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Eric Fagan <sef@cygnus>1991-11-16 07:24:23 +0000
committerSean Eric Fagan <sef@cygnus>1991-11-16 07:24:23 +0000
commitd671e293c373e529ebabc9cb58949522578f3d60 (patch)
tree8db03bfdff84f7e47f67c4c9384380fdc51f5c1a
parentb260b2a000cdde510fdbc9cd9c94406e0d5b4d7e (diff)
downloadgdb-d671e293c373e529ebabc9cb58949522578f3d60.zip
gdb-d671e293c373e529ebabc9cb58949522578f3d60.tar.gz
gdb-d671e293c373e529ebabc9cb58949522578f3d60.tar.bz2
Fixed a syntax error.
-rw-r--r--gdb/c-exp.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/c-exp.y b/gdb/c-exp.y
index f428818..bea0463 100644
--- a/gdb/c-exp.y
+++ b/gdb/c-exp.y
@@ -1410,7 +1410,7 @@ void
yyerror (msg)
char *msg;
{
- error (error (msg ? msg : "Invalid syntax in expression.");
+ error (msg ? msg : "Invalid syntax in expression.");
}
/* Table mapping opcodes into strings for printing operators