diff options
author | Lluís Vilanova <vilanova@ac.upc.edu> | 2016-07-11 12:53:30 +0200 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2016-07-18 18:13:54 +0100 |
commit | ca66f1a1741907e3f5fede89f04ac993f36130a7 (patch) | |
tree | 9d8d11a329ddbe3db12f04a3699776950be9bdb1 /disas/arm.c | |
parent | 17f7ac75df3909c384c18274b41a2a91192599e3 (diff) |
disas: Remove unused macro '_'
Eliminates a future compilation error when UI code includes the tracing
headers (indirectly pulling "disas/bfd.h" through "qom/cpu.h") and
GLib's i18n '_' macro.
Signed-off-by: Lluís Vilanova <vilanova@ac.upc.edu>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'disas/arm.c')
-rw-r--r-- | disas/arm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/disas/arm.c b/disas/arm.c index 70da5298a0..32f8ca992f 100644 --- a/disas/arm.c +++ b/disas/arm.c @@ -1817,7 +1817,7 @@ print_insn_coprocessor (bfd_vma pc, struct disassemble_info *info, long given, func (stream, "e"); break; default: - func (stream, _("<illegal precision>")); + func (stream, "<illegal precision>"); break; } break; |