aboutsummaryrefslogtreecommitdiff
path: root/gdb/parse.c
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@vmware.com>2011-03-05 22:02:47 +0000
committerMichael Snyder <msnyder@vmware.com>2011-03-05 22:02:47 +0000
commit82ae4854632a42a7d7d74b6cdb8da9be7890976c (patch)
treeca22e9945a4cd35a3ac60f97bae8de6898050719 /gdb/parse.c
parente3aa49afd531648e9ec803d3b4f71efbedbc54ee (diff)
downloadgdb-82ae4854632a42a7d7d74b6cdb8da9be7890976c.zip
gdb-82ae4854632a42a7d7d74b6cdb8da9be7890976c.tar.gz
gdb-82ae4854632a42a7d7d74b6cdb8da9be7890976c.tar.bz2
2011-03-05 Michael Snyder <msnyder@vmware.com>
* dwarf2expr.c (execute_stack_op): Delete superfluous semicolon. * mdebugread.c (parse_symbol): Ditto. * parse.c (parse_exp_in_context): Ditto. * source.c (add_path): Ditto. * utils.c (gnu_debuglink_crc32): Ditto. * varobj.c (variable_language): Ditto.
Diffstat (limited to 'gdb/parse.c')
-rw-r--r--gdb/parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/parse.c b/gdb/parse.c
index 856c24d..02a7d89 100644
--- a/gdb/parse.c
+++ b/gdb/parse.c
@@ -1160,7 +1160,7 @@ parse_exp_in_context (char **stringptr, struct block *block, int comma,
expout->nelts = expout_ptr;
expout = (struct expression *)
xrealloc ((char *) expout,
- sizeof (struct expression) + EXP_ELEM_TO_BYTES (expout_ptr));;
+ sizeof (struct expression) + EXP_ELEM_TO_BYTES (expout_ptr));
/* Convert expression from postfix form as generated by yacc
parser, to a prefix form. */