sane.ds: Remove dead code (Clang).
Signed-off-by: André Hentschel <nerv@dawncrow.de> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
63b392b144
commit
3d80706129
|
@ -1081,11 +1081,6 @@ static TW_UINT16 SANE_CAPFeederEnabled (pTW_CAPABILITY pCapability, TW_UINT16 ac
|
||||||
twCC = msg_set(pCapability, &val);
|
twCC = msg_set(pCapability, &val);
|
||||||
if (twCC == TWCC_SUCCESS)
|
if (twCC == TWCC_SUCCESS)
|
||||||
{
|
{
|
||||||
if (val)
|
|
||||||
enabled = TRUE;
|
|
||||||
else
|
|
||||||
enabled = FALSE;
|
|
||||||
|
|
||||||
strcpy(source, "ADF");
|
strcpy(source, "ADF");
|
||||||
status = sane_option_set_str(activeDS.deviceHandle, SANE_NAME_SCAN_SOURCE, source, NULL);
|
status = sane_option_set_str(activeDS.deviceHandle, SANE_NAME_SCAN_SOURCE, source, NULL);
|
||||||
if (status != SANE_STATUS_GOOD)
|
if (status != SANE_STATUS_GOOD)
|
||||||
|
@ -1109,7 +1104,6 @@ static TW_UINT16 SANE_CAPFeederEnabled (pTW_CAPABILITY pCapability, TW_UINT16 ac
|
||||||
strcpy(source, "Auto");
|
strcpy(source, "Auto");
|
||||||
if (sane_option_set_str(activeDS.deviceHandle, SANE_NAME_SCAN_SOURCE, source, NULL) == SANE_STATUS_GOOD)
|
if (sane_option_set_str(activeDS.deviceHandle, SANE_NAME_SCAN_SOURCE, source, NULL) == SANE_STATUS_GOOD)
|
||||||
enabled = TRUE;
|
enabled = TRUE;
|
||||||
twCC = TWCC_SUCCESS;
|
|
||||||
/* .. fall through intentional .. */
|
/* .. fall through intentional .. */
|
||||||
|
|
||||||
case MSG_GETCURRENT:
|
case MSG_GETCURRENT:
|
||||||
|
|
Loading…
Reference in New Issue