stdout, not stderr -- thanks to Sander van Malssen

This commit is contained in:
albert 2002-12-11 21:25:04 +00:00
parent 36061e0e0d
commit cf16b01a99

2
w.c
View File

@ -64,7 +64,7 @@ static void print_host(const char *restrict host, int len) {
}
}
// space-fill, and a '-' too if needed to ensure the column exists
if(width < 16) fputs("- "+width, stderr);
if(width < 16) fputs("- "+width, stdout);
}
/***** compact 7 char format for time intervals (belongs in libproc?) */