Fix unintended fall-through

The compiler found this, not me.  Building with
all warnings enabled is recommended.
This commit is contained in:
Henry Gabryjelski 2020-01-16 16:15:34 -08:00
parent 52c988fea0
commit 8afd0523b1

View file

@ -877,6 +877,7 @@ bool USBDeviceClass::handleStandardSetup(USBSetup &setup)
sendZlp(0);
return true;
}
return false;
case SET_ADDRESS:
setAddress(setup.wValueL);