diff options
author | Christopher Faylor <me@cgf.cx> | 2000-10-28 05:39:38 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-10-28 05:39:38 +0000 |
commit | ce475802f8aa48518553eabd5887bcc439b61a0d (patch) | |
tree | 328fd19ec94c0812540ab5a772e5f30584a40ad9 /winsup/utils/parse_pe.cc | |
parent | eedc36cb12f20ed62f5dfeaea25c84c7c984cf5f (diff) | |
download | newlib-ce475802f8aa48518553eabd5887bcc439b61a0d.zip newlib-ce475802f8aa48518553eabd5887bcc439b61a0d.tar.gz newlib-ce475802f8aa48518553eabd5887bcc439b61a0d.tar.bz2 |
* Makefile.in: Accomodate newer gcc's which require linking of c++ programs
with g++. Fixup output for some compilations.
* cygcheck.cc: Respond to compiler warnings.
* dumper.cc (main): Ditto.
* parse_pe.cc (exclusion::sort_and_check): Ditto.
* setfacl.cc (getaclentry): Ditto.
Diffstat (limited to 'winsup/utils/parse_pe.cc')
-rw-r--r-- | winsup/utils/parse_pe.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/utils/parse_pe.cc b/winsup/utils/parse_pe.cc index b439572..7e2a837 100644 --- a/winsup/utils/parse_pe.cc +++ b/winsup/utils/parse_pe.cc @@ -49,7 +49,7 @@ exclusion::sort_and_check () process_mem_region *q = p + 1; if (p->base + size > q->base) { - fprintf (stderr, "region error @ %08x", p->base); + fprintf (stderr, "region error @ %08x", (unsigned) p->base); return 0; } } |