diff options
Diffstat (limited to 'gdb/findvar.c')
-rw-r--r-- | gdb/findvar.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/findvar.c b/gdb/findvar.c index fb9217d..84964f3 100644 --- a/gdb/findvar.c +++ b/gdb/findvar.c @@ -169,8 +169,8 @@ extract_typed_address (const void *buf, struct type *type) if (TYPE_CODE (type) != TYPE_CODE_PTR && TYPE_CODE (type) != TYPE_CODE_REF) internal_error (__FILE__, __LINE__, - "extract_typed_address: " - "type is not a pointer or reference"); + _("extract_typed_address: " + "type is not a pointer or reference")); return POINTER_TO_ADDRESS (type, buf); } @@ -238,8 +238,8 @@ store_typed_address (void *buf, struct type *type, CORE_ADDR addr) if (TYPE_CODE (type) != TYPE_CODE_PTR && TYPE_CODE (type) != TYPE_CODE_REF) internal_error (__FILE__, __LINE__, - "store_typed_address: " - "type is not a pointer or reference"); + _("store_typed_address: " + "type is not a pointer or reference")); ADDRESS_TO_POINTER (type, buf, addr); } |