Fix formatting

This commit is contained in:
Kristian Sloth Lauszus 2015-09-04 00:41:30 +02:00
parent 8f86fd4e04
commit 2f4907ab31

View file

@ -163,12 +163,11 @@ protected:
break; break;
} }
if(old_keys != kbdLockingKeys.bLeds && hid){ if(old_keys != kbdLockingKeys.bLeds && hid) {
uint8_t lockLeds = kbdLockingKeys.bLeds; uint8_t lockLeds = kbdLockingKeys.bLeds;
return (hid->SetReport(0, 0/*hid->GetIface()*/, 2, 0, 1, &lockLeds));
return (hid->SetReport(0, 0/*hid->GetIface()*/, 2, 0, 1, &lockLeds)); }
}
return 0; return 0;
}; };