apple: Fix [-Wimplicit-fallthrough] compiler warning

It doesn't make sense to log a value as both `Fixed` *and* `Int`.
merge-requests/128/head
Olaf Meeuwissen 2019-08-11 10:16:00 +09:00
rodzic 797cd1fb37
commit 9344a957ed
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -2064,8 +2064,8 @@ sane_control_option (SANE_Handle handle, SANE_Int option,
v2 = SANE_UNFIX (f);
DBG (FLOW_CONTROL, "Value %g (Fixed)\n",
(action == SANE_ACTION_GET_VALUE) ? v1 : v2);
}
// fall through
break;
}
default:
DBG (FLOW_CONTROL, "Value %u (Int).\n",
(action == SANE_ACTION_GET_VALUE)