Skip to content
Snippets Groups Projects
Commit c6aa7fa2 authored by rswindell's avatar rswindell
Browse files

Fixed bad typo in format string in event_lputs().

parent be49f221
No related branches found
No related tags found
No related merge requests found
...@@ -263,7 +263,7 @@ static int event_lputs(char *str) ...@@ -263,7 +263,7 @@ static int event_lputs(char *str)
,tm_p->tm_mon+1,tm_p->tm_mday ,tm_p->tm_mon+1,tm_p->tm_mday
,tm_p->tm_hour,tm_p->tm_min,tm_p->tm_sec); ,tm_p->tm_hour,tm_p->tm_min,tm_p->tm_sec);
sprintf(logline,"%evnt %.*s",tstr,sizeof(logline)-2,str); sprintf(logline,"%sevnt %.*s",tstr,sizeof(logline)-2,str);
truncsp(logline); truncsp(logline);
lputs(logline); lputs(logline);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment