cardscan: fix [-Wunused-but-set-variable] compiler warning

merge-requests/1/head
Olaf Meeuwissen 2015-12-23 20:49:17 +09:00
rodzic c2b7b1af74
commit 50ca4bc976
1 zmienionych plików z 0 dodań i 4 usunięć

Wyświetl plik

@ -874,7 +874,6 @@ sane_control_option (SANE_Handle handle, SANE_Int option,
} }
else if (action == SANE_ACTION_SET_VALUE) { else if (action == SANE_ACTION_SET_VALUE) {
int tmp; int tmp;
SANE_Word val_c;
SANE_Status status; SANE_Status status;
DBG (20, "sane_control_option: set value for '%s' (%d)\n", s->opt[option].name,option); DBG (20, "sane_control_option: set value for '%s' (%d)\n", s->opt[option].name,option);
@ -895,9 +894,6 @@ sane_control_option (SANE_Handle handle, SANE_Int option,
return status; return status;
} }
/* may have been changed by constrain, so dont copy until now */
val_c = *(SANE_Word *)val;
/* /*
* Note - for those options which can assume one of a list of * Note - for those options which can assume one of a list of
* valid values, we can safely assume that they will have * valid values, we can safely assume that they will have