Skip to content

Commit

Permalink
Remove extraneous parentheses.
Browse files Browse the repository at this point in the history
  • Loading branch information
hugueskamba committed Sep 3, 2019
1 parent 8c22bbb commit a9abdac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/source/usb/USBDevice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ bool USBDevice::_request_setup()
bool success = false;

/* Process standard requests */
if ((_transfer.setup.bmRequestType.Type == STANDARD_TYPE)) {
if (_transfer.setup.bmRequestType.Type == STANDARD_TYPE) {
switch (_transfer.setup.bRequest) {
case GET_STATUS:
success = _request_get_status();
Expand Down

0 comments on commit a9abdac

Please sign in to comment.