Skip to content

Commit

Permalink
Removed debug comment
Browse files Browse the repository at this point in the history
  • Loading branch information
berndporr committed Mar 21, 2024
1 parent 823f9ab commit 97ba2c6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions CppTimer.h
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,7 @@ class CppTimer
uint64_t exp;
const long int s = read(fd, &exp, sizeof(uint64_t));
if (s != sizeof(uint64_t) ) {
fprintf(stderr,"Periodic timer didn't work.");
throw "Periodic timer didn't work.";
throw "Timer didn't work.";
}
timerEvent();
if (ONESHOT == timerType) running = false;
Expand Down

0 comments on commit 97ba2c6

Please sign in to comment.