* parse_pe.c (exclusion::sort_and_check): Remove crude cast.

This commit is contained in:
Corinna Vinschen 2005-06-14 12:42:57 +00:00
parent 435227352b
commit d1ce2c4a15
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-06-14 Corinna Vinschen <corinna@vinschen.de>
* parse_pe.c (exclusion::sort_and_check): Remove crude cast.
2005-05-30 Corinna Vinschen <corinna@vinschen.de>
* cygcheck.cc (dump_sysinfo): Recognize XP Media Center and Tablet PC

View File

@ -51,7 +51,7 @@ exclusion::sort_and_check ()
continue;
if (p->base + size > q->base)
{
fprintf (stderr, "region error @ (%8p + %d) > %8p\n", (unsigned) p->base, size, q->base);
fprintf (stderr, "region error @ (%8p + %d) > %8p\n", p->base, size, q->base);
return 0;
}
}