* src/gdb/testsuite/gdb.base/shr1.c: Use %p in format string.

* src/gdb/testsuite/gdb.base/unload.c: Avoid warning in fprintf.
	* src/gdb/testsuite/gdb.base/watchpoint-solib.c: Idem.
This commit is contained in:
Pierre Muller 2009-10-01 21:33:24 +00:00
parent 2f2da8f6fb
commit c2d494a019
4 changed files with 17 additions and 5 deletions

View File

@ -1,3 +1,9 @@
2009-10-01 Pierre Muller <muller@ics.u-strasbg.fr>
* src/gdb/testsuite/gdb.base/shr1.c: Use %p in format string.
* src/gdb/testsuite/gdb.base/unload.c: Avoid warning in fprintf.
* src/gdb/testsuite/gdb.base/watchpoint-solib.c: Idem.
2009-10-01 Pierre Muller <muller@ics.u-strasbg.fr>
* gdb.base/fileio.c (test_lseek): typecast ofs_t ret variable to

View File

@ -25,7 +25,7 @@ int x;
sg = 6.6;
sgi++;
sgs = 8;
printf("address of sgs is 0x%x\n", &sgs);
printf("address of sgs is %p\n", &sgs);
return 2*x;
}

View File

@ -27,7 +27,6 @@
# define dlsym(handle, func) GetProcAddress (handle, func)
#endif
#define dlclose(handle) FreeLibrary (handle)
#define dlerror() "error %d occurred", GetLastError ()
#else
#include <dlfcn.h>
#endif
@ -53,7 +52,11 @@ int main()
if (!unloadshr)
{
fprintf (stderr, dlerror ());
#ifdef __WIN32__
fprintf (stderr, "error %d occurred", GetLastError ());
#else
fprintf (stderr, "%s", dlerror ());
#endif
exit (1);
}

View File

@ -27,7 +27,6 @@
# define dlsym(handle, func) GetProcAddress (handle, func)
#endif
#define dlclose(handle) FreeLibrary (handle)
#define dlerror() "error %d occurred", GetLastError ()
#else
#include <dlfcn.h>
#endif
@ -42,7 +41,11 @@ void open_shlib ()
if (!handle)
{
fprintf (stderr, dlerror ());
#ifdef __WIN32__
fprintf (stderr, "error %d occurred", GetLastError ());
#else
fprintf (stderr, "%s", dlerror ());
#endif
exit (1);
}