twain_32: Prevent an incorrect test warning message on get checks.
This commit is contained in:
parent
2fdd05cffc
commit
e02528e629
|
@ -104,10 +104,10 @@ static void check_get(TW_CAPABILITY *pCapability, TW_INT32 actual_support,
|
||||||
p = GlobalLock(pCapability->hContainer);
|
p = GlobalLock(pCapability->hContainer);
|
||||||
if (p)
|
if (p)
|
||||||
{
|
{
|
||||||
if (pCapability->ConType == TWON_ONEVALUE && actual_support & TWQC_GETCURRENT)
|
if (pCapability->ConType == TWON_ONEVALUE)
|
||||||
{
|
{
|
||||||
TW_ONEVALUE *onev = (TW_ONEVALUE *) p;
|
TW_ONEVALUE *onev = (TW_ONEVALUE *) p;
|
||||||
ok(onev->Item == orig_value, "MSG_GET of 0x%x returned 0x%x, expecting 0x%x\n",
|
ok(onev->Item == orig_value || !(actual_support & TWQC_GETCURRENT), "MSG_GET of 0x%x returned 0x%x, expecting 0x%x\n",
|
||||||
pCapability->Cap, onev->Item, orig_value);
|
pCapability->Cap, onev->Item, orig_value);
|
||||||
}
|
}
|
||||||
else if (pCapability->ConType == TWON_ENUMERATION)
|
else if (pCapability->ConType == TWON_ENUMERATION)
|
||||||
|
|
Loading…
Reference in New Issue