From cf16b01a99ac277e7a1a661bb277a883213bb8ec Mon Sep 17 00:00:00 2001
From: albert <>
Date: Wed, 11 Dec 2002 21:25:04 +0000
Subject: [PATCH] stdout, not stderr -- thanks to Sander van Malssen

---
 w.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/w.c b/w.c
index f8d5b511..b0340758 100644
--- a/w.c
+++ b/w.c
@@ -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?) */
-- 
2.40.0