OSDN Git Service

* findvar.c (store_typed_address, extract_typed_address): Fix
authorJim Blandy <jimb@codesourcery.com>
Sun, 16 Apr 2000 16:04:53 +0000 (16:04 +0000)
committerJim Blandy <jimb@codesourcery.com>
Sun, 16 Apr 2000 16:04:53 +0000 (16:04 +0000)
function names in error messages.

gdb/findvar.c

index 10f9c3f..dd86904 100644 (file)
@@ -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);