mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:54:13 +00:00
sane.ds: Avoid signed-unsigned integer comparisons.
This commit is contained in:
parent
49992c3a5e
commit
57b28bce0b
1 changed files with 2 additions and 2 deletions
|
@ -174,7 +174,7 @@ static TW_UINT16 TWAIN_GetSupportedCaps(pTW_CAPABILITY pCapability)
|
||||||
if (pCapability->hContainer)
|
if (pCapability->hContainer)
|
||||||
{
|
{
|
||||||
UINT16 *u;
|
UINT16 *u;
|
||||||
int i;
|
TW_UINT32 i;
|
||||||
a = GlobalLock (pCapability->hContainer);
|
a = GlobalLock (pCapability->hContainer);
|
||||||
a->ItemType = TWTY_UINT16;
|
a->ItemType = TWTY_UINT16;
|
||||||
a->NumItems = sizeof(supported_caps) / sizeof(supported_caps[0]);
|
a->NumItems = sizeof(supported_caps) / sizeof(supported_caps[0]);
|
||||||
|
@ -924,7 +924,7 @@ static TW_UINT16 SANE_ICAPSupportedSizes (pTW_CAPABILITY pCapability, TW_UINT16
|
||||||
#ifdef SONAME_LIBSANE
|
#ifdef SONAME_LIBSANE
|
||||||
|
|
||||||
static TW_UINT32 possible_values[SUPPORTED_SIZE_COUNT];
|
static TW_UINT32 possible_values[SUPPORTED_SIZE_COUNT];
|
||||||
int i;
|
unsigned int i;
|
||||||
TW_UINT32 val;
|
TW_UINT32 val;
|
||||||
TW_UINT16 default_size = get_default_paper_size(supported_sizes, SUPPORTED_SIZE_COUNT);
|
TW_UINT16 default_size = get_default_paper_size(supported_sizes, SUPPORTED_SIZE_COUNT);
|
||||||
TW_UINT16 current_size = get_current_paper_size(supported_sizes, SUPPORTED_SIZE_COUNT);
|
TW_UINT16 current_size = get_current_paper_size(supported_sizes, SUPPORTED_SIZE_COUNT);
|
||||||
|
|
Loading…
Reference in a new issue