Skip to content
Snippets Groups Projects
Commit 86351a49 authored by Moe Jette's avatar Moe Jette
Browse files

Add "\n" to end of printf message for clarity.

parent 24cf9983
No related branches found
No related tags found
No related merge requests found
...@@ -352,7 +352,7 @@ extern time_t parse_time(char *time_str) ...@@ -352,7 +352,7 @@ extern time_t parse_time(char *time_str)
res_tm.tm_isdst = -1; res_tm.tm_isdst = -1;
return mktime(&res_tm); return mktime(&res_tm);
prob: fprintf(stderr, "Invalid time specification (pos=%d): %s", pos, time_str); prob: fprintf(stderr, "Invalid time specification (pos=%d): %s\n", pos, time_str);
return (time_t) 0; return (time_t) 0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment