Skip to content

Commit

Permalink
Remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
lbussy committed Feb 20, 2021
1 parent 161be02 commit f733964
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/serialhandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ void printTimestamp(Print *_logOutput)
if (current_stamp == 0)
{
char c[12];
int m = sprintf(c, "%10lu ", millis());
sprintf(c, "%10lu ", millis());
_logOutput->print(c);
}
else
Expand Down

0 comments on commit f733964

Please sign in to comment.