diff options
author | Tom Tromey <tromey@redhat.com> | 2009-03-23 21:06:08 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2009-03-23 21:06:08 +0000 |
commit | 9c482037a9b21d78ac1735960d55db860afbdd46 (patch) | |
tree | a74ef5d2e1bee01e82ec08c0035188c0c5379095 /gdb/dwarf2expr.c | |
parent | e2dd7057cf1a2244492e04fa3375cf45a55210c2 (diff) | |
download | gdb-9c482037a9b21d78ac1735960d55db860afbdd46.zip gdb-9c482037a9b21d78ac1735960d55db860afbdd46.tar.gz gdb-9c482037a9b21d78ac1735960d55db860afbdd46.tar.bz2 |
* dwarf2expr.c (execute_stack_op) <DW_OP_GNU_uninit>: Fix typo in
error message.
Diffstat (limited to 'gdb/dwarf2expr.c')
-rw-r--r-- | gdb/dwarf2expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/dwarf2expr.c b/gdb/dwarf2expr.c index 75a4ec7..e2e106b 100644 --- a/gdb/dwarf2expr.c +++ b/gdb/dwarf2expr.c @@ -746,7 +746,7 @@ execute_stack_op (struct dwarf_expr_context *ctx, case DW_OP_GNU_uninit: if (op_ptr != op_end) - error (_("DWARF-2 expression error: DW_OP_GNU_unint must always " + error (_("DWARF-2 expression error: DW_OP_GNU_uninit must always " "be the very last op.")); ctx->initialized = 0; |