+2009-10-01 Pierre Muller <muller@ics.u-strasbg.fr>
+
+ * gdb.base/fileio.c (test_lseek): typecast ofs_t ret variable to
+ long type.
+ (test_unlink): Correct printf string.
+ * gdb.base/checkpoint.c (main): Correct fprintf string for variable i.
+ * gdb.threads/attachstop-mt.c: Add #include <string.h>.
+
2009-09-29 Jan Kratochvil <jan.kratochvil@redhat.com>
* gdb.base/breakpoint-shadow.exp: Move the ia64 part into ...
for (i = 0; ; i++)
{
if (ftell (in) != i)
- fprintf (stderr, "Input error at %d\n", i);
+ fprintf (stderr, "Input error at %ld\n", i);
if (ftell (out) != i)
- fprintf (stderr, "Output error at %d\n", i);
+ fprintf (stderr, "Output error at %ld\n", i);
c = fgetc (in);
if (c == '\n')
lines++; /* breakpoint 1 */
}
else
{
- printf ("lseek 1: ret = %d, errno = %d %s\n", ret, errno,
+ printf ("lseek 1: ret = %ld, errno = %d %s\n", (long) ret, errno,
strerrno (errno));
stop ();
- printf ("lseek 2: ret = %d, errno = %d %s\n", ret, errno,
+ printf ("lseek 2: ret = %ld, errno = %d %s\n", (long) ret, errno,
strerrno (errno));
stop ();
- printf ("lseek 3: ret = %d, errno = %d %s\n", ret, errno,
+ printf ("lseek 3: ret = %ld, errno = %d %s\n", (long) ret, errno,
strerrno (errno));
}
/* Seeking on an invalid file descriptor */
strerrno (errno));
}
else
- printf ("unlink 2: ret = %d chmod failed\n", ret, errno);
+ printf ("unlink 2: ret = %d chmod failed, errno= %d\n", ret, errno);
}
else
printf ("unlink 2: ret = %d, errno = %d\n", ret, errno);