w: Replace printf() with fprintf(fout) in print_time_ival7().
This has currently no impact, because print_time_ival7() is always called with fout = stdout, but fix it anyway.
This commit is contained in:
parent
059ae8b512
commit
ed3cf6988a
2
w.c
2
w.c
@ -236,7 +236,7 @@ static void print_time_ival7(time_t t, int centi_sec, FILE * fout)
|
|||||||
{
|
{
|
||||||
if ((long)t < (long)0) {
|
if ((long)t < (long)0) {
|
||||||
/* system clock changed? */
|
/* system clock changed? */
|
||||||
printf(" ? ");
|
fprintf(fout, " ? ");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (oldstyle) {
|
if (oldstyle) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user