Use putc, and write to stderr as the rest of the progressmeter does.
diff --git a/wget.c b/wget.c
index b58a251..1c7c3b5 100644
--- a/wget.c
+++ b/wget.c
@@ -426,7 +426,7 @@
 	}
 #ifdef BB_FEATURE_WGET_STATUSBAR
 	if (quiet_flag==FALSE)
-		printf("\n");
+		putc('\n', stderr);
 #endif
 	exit(EXIT_SUCCESS);
 }
@@ -735,7 +735,7 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- *	$Id: wget.c,v 1.34 2001/04/11 20:07:27 kraai Exp $
+ *	$Id: wget.c,v 1.35 2001/04/11 20:11:51 kraai Exp $
  */