diff --git a/gdb/findvar.c b/gdb/findvar.c index 10f9c3f3b8..dd869049ef 100644 --- a/gdb/findvar.c +++ b/gdb/findvar.c @@ -203,7 +203,7 @@ extract_typed_address (void *buf, struct type *type) { if (TYPE_CODE (type) != TYPE_CODE_PTR && TYPE_CODE (type) != TYPE_CODE_REF) - internal_error ("findvar.c (generic_pointer_to_address): " + internal_error ("findvar.c (extract_typed_address): " "type is not a pointer or reference"); return POINTER_TO_ADDRESS (type, buf); @@ -293,7 +293,7 @@ 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 ("findvar.c (generic_address_to_pointer): " + internal_error ("findvar.c (store_typed_address): " "type is not a pointer or reference"); ADDRESS_TO_POINTER (type, buf, addr);