Commit 906c9639 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

winapi: Remove the special handling of GDI_AllocObject().

That function doesn't exist anymore in Wine.
parent e5574369
......@@ -347,13 +347,7 @@ sub gcc_output($$) {
} elsif(/^ordered comparison of pointer with integer zero$/) {
$suppress = 0;
} elsif(/^passing arg (\d+) of (?:pointer to function|\`(\S+)\') from incompatible pointer type$/) {
my $arg = $1;
my $name = $2;
if(defined($name) && $name =~ /^GDI_AllocObject$/) {
$suppress = 1;
} else {
$suppress = 0;
}
$suppress = 0;
} elsif(/^passing arg (\d+) of (?:pointer to function|\`(\S+)\') makes integer from pointer without a cast$/) {
$suppress = 0;
} elsif(/^passing arg (\d+) of (?:pointer to function|\`(\S+)\') makes pointer from integer without a cast$/) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment