diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-06-22 23:24:13 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-06-22 23:24:13 +0000 |
| commit | 35740f4fe34b263f746d738f54a86e8c39f692cd (patch) | |
| tree | c377a14b683e622e0e481e20bc0f0276edf0d566 | |
| parent | a2df3c334593ed37e36d097c72ecd4a991682bd5 (diff) | |
Notes
| -rw-r--r-- | usr.bin/fetch/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/fetch/main.c b/usr.bin/fetch/main.c index 9934fc455b6e..ba0d9a0ec0b2 100644 --- a/usr.bin/fetch/main.c +++ b/usr.bin/fetch/main.c @@ -1,6 +1,6 @@ /*- * Copyright (c) 1996 - * Jordan Hubbard, Poul-Henning Kamp, Jean-Marc Zucconi + * Jean-Marc Zucconi * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -24,7 +24,7 @@ * SUCH DAMAGE. */ -/* $Id: main.c,v 1.2 1996/06/22 20:16:57 jkh Exp $ */ +/* $Id: main.c,v 1.3 1996/06/22 21:42:14 jkh Exp $ */ #include <stdlib.h> #include <stdio.h> @@ -325,7 +325,7 @@ display (int size, int n) size ? "" : " [appending]"); else sprintf (s, "Receiving %s", outputfile); - printf ("\n%s", s); + printf ("%s", s); fflush (stdout); bytes = n; return; |
