* infrun.c (handle_inferior_event): If
[deliverable/binutils-gdb.git] / gdb / valprint.c
index 99d42bf6a955cc73df0b2d384e6963af9df0c894..eb3ad35be5d01b2e25ba428ad0c38203933ed60c 100644 (file)
@@ -1290,13 +1290,13 @@ val_print_string (CORE_ADDR addr, int len, int width, struct ui_file *stream)
       if (errcode == EIO)
        {
          fprintf_filtered (stream, " <Address ");
-         deprecated_print_address_numeric (addr, 1, stream);
+         fputs_filtered (paddress (addr), stream);
          fprintf_filtered (stream, " out of bounds>");
        }
       else
        {
          fprintf_filtered (stream, " <Error reading address ");
-         deprecated_print_address_numeric (addr, 1, stream);
+         fputs_filtered (paddress (addr), stream);
          fprintf_filtered (stream, ": %s>", safe_strerror (errcode));
        }
     }
This page took 0.025167 seconds and 4 git commands to generate.