* parse_pe.c (exclusion::sort_and_check): Remove crude cast.
This commit is contained in:
parent
435227352b
commit
d1ce2c4a15
|
@ -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>
|
2005-05-30 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* cygcheck.cc (dump_sysinfo): Recognize XP Media Center and Tablet PC
|
* cygcheck.cc (dump_sysinfo): Recognize XP Media Center and Tablet PC
|
||||||
|
|
|
@ -51,7 +51,7 @@ exclusion::sort_and_check ()
|
||||||
continue;
|
continue;
|
||||||
if (p->base + size > q->base)
|
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;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue