1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-24 00:35:39 +03:00

Whitespace and const correctness tidy

This commit is contained in:
Martin Budden 2016-08-11 17:44:54 +01:00
parent 96bf7ea638
commit 147a16a66d
8 changed files with 12 additions and 12 deletions

View file

@ -207,8 +207,8 @@ void IOInit(IO_t io, resourceOwner_t owner, resourceType_t resource, uint8_t ind
{
ioRec_t *ioRec = IO_Rec(io);
ioRec->owner = owner;
ioRec->resource = resource;
ioRec->index = index;
ioRec->resource = resource;
ioRec->index = index;
}
void IORelease(IO_t io)