Skip to content

Commit

Permalink
updateNTP: Fix swapped "too fast"/"too slow" messages
Browse files Browse the repository at this point in the history
Fixes ropg#115
  • Loading branch information
dos1 committed Sep 17, 2021
1 parent 7b3c8aa commit ddcb7f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ezTime.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -391,9 +391,9 @@ namespace ezt {
} else {
info(String(abs(correction)));
if (correction > 0) {
infoln(F(" ms fast)"));
} else {
infoln(F(" ms slow)"));
} else {
infoln(F(" ms fast)"));
}
}
} else {
Expand Down

0 comments on commit ddcb7f3

Please sign in to comment.