fix indent

This commit is contained in:
2022-10-15 06:28:49 +02:00
parent 2ea6ec2e03
commit e355efd233

View File

@@ -9,9 +9,9 @@ volatile uint8_t oldInstates[nrOfInputs/8];
/* @brief: copies a single bit from one char to another char (or arrays thereof) /* @brief: copies a single bit from one char to another char (or arrays thereof)
* *
* *
*/ */
void ioHelperCpArb(volatile uint8_t *source, uint16_t sourceNr,volatile uint8_t *target, uint16_t targetNr) { void ioHelperCpArb(volatile uint8_t *source, uint16_t sourceNr,volatile uint8_t *target, uint16_t targetNr) {
if(*(source+(sourceNr/8))&(1<<(sourceNr-((sourceNr/8)*8)))) if(*(source+(sourceNr/8))&(1<<(sourceNr-((sourceNr/8)*8))))
{ {