Newline between fkr output should go to stderr

This commit is contained in:
Aaron Gyes 2016-07-03 02:16:39 -07:00
parent 5a1a25bfbe
commit 89c96c2114

View File

@ -173,7 +173,7 @@ static double output_elapsed_time(double prev_tstamp, bool first_char_seen) {
double now = timef();
long long int delta_tstamp_us = 1000000 * (now - prev_tstamp);
if (delta_tstamp_us >= 200000 && first_char_seen) putchar('\n');
if (delta_tstamp_us >= 200000 && first_char_seen) putc('\n', stderr);
if (delta_tstamp_us >= 1000000) {
fprintf(stderr, " ");
} else {