Skip to content

Commit

Permalink
Removed a single space for clang-format :)
Browse files Browse the repository at this point in the history
  • Loading branch information
SV-Zanshin committed May 14, 2023
1 parent 9a9235e commit 37bf214
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DS3231M.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ bool DS3231M_Class::isAlarm() {
*/
uint8_t controlByte = readByte(DS3231M_CONTROL);
unit8_t statusByte = readByte(DS3231M_STATUS);
return ((controlByte & 0xFE) && (statusByte & 0xFE)) |
return ((controlByte & 0xFE) && (statusByte & 0xFE)) |
((controlByte & 0xFD) && (statusByte & 0xFD));
} // of method isAlarm()
void DS3231M_Class::clearAlarm() {
Expand Down

0 comments on commit 37bf214

Please sign in to comment.