* inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
[deliverable/binutils-gdb.git] / gdb / target.c
index c64a9d85c30db167282d7776a246b8fde67ef59d..ad304bc7e1a1d32241fa586a0b78deb54e5ccb46 100644 (file)
@@ -3258,9 +3258,9 @@ target_fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
 
          if (targetdebug)
            fprintf_unfiltered (gdb_stdlog,
-                               "target_fileio_pwrite (%d,%p,%d,%s) "
+                               "target_fileio_pwrite (%d,...,%d,%s) "
                                "= %d (%d)\n",
-                               fd, write_buf, len, pulongest (offset),
+                               fd, len, pulongest (offset),
                                ret, ret != -1 ? 0 : *target_errno);
          return ret;
        }
@@ -3288,9 +3288,9 @@ target_fileio_pread (int fd, gdb_byte *read_buf, int len,
 
          if (targetdebug)
            fprintf_unfiltered (gdb_stdlog,
-                               "target_fileio_pread (%d,%p,%d,%s) "
+                               "target_fileio_pread (%d,...,%d,%s) "
                                "= %d (%d)\n",
-                               fd, read_buf, len, pulongest (offset),
+                               fd, len, pulongest (offset),
                                ret, ret != -1 ? 0 : *target_errno);
          return ret;
        }
This page took 0.025601 seconds and 4 git commands to generate.