widl: Disable a noisy warning.
This could be re-enabled once there's a mechanism to avoid the warning when building the corresponding test case. Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
01c3fac140
commit
87dacc4e11
|
@ -504,10 +504,11 @@ static int ctl2_alloc_guid(
|
||||||
offset = ctl2_find_guid(typelib, hash_key, &guid->guid);
|
offset = ctl2_find_guid(typelib, hash_key, &guid->guid);
|
||||||
if (offset != -1)
|
if (offset != -1)
|
||||||
{
|
{
|
||||||
warning("duplicate uuid {%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}\n",
|
if (pedantic)
|
||||||
guid->guid.Data1, guid->guid.Data2, guid->guid.Data3,
|
warning("duplicate uuid {%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}\n",
|
||||||
guid->guid.Data4[0], guid->guid.Data4[1], guid->guid.Data4[2], guid->guid.Data4[3],
|
guid->guid.Data1, guid->guid.Data2, guid->guid.Data3,
|
||||||
guid->guid.Data4[4], guid->guid.Data4[5], guid->guid.Data4[6], guid->guid.Data4[7]);
|
guid->guid.Data4[0], guid->guid.Data4[1], guid->guid.Data4[2], guid->guid.Data4[3],
|
||||||
|
guid->guid.Data4[4], guid->guid.Data4[5], guid->guid.Data4[6], guid->guid.Data4[7]);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue