mirror of
https://git.busybox.net/busybox
synced 2026-01-31 16:43:21 +00:00
Use putc, and write to stderr as the rest of the progressmeter does.
This commit is contained in:
parent
90d7f696d6
commit
da160c0da5
2 changed files with 4 additions and 4 deletions
|
|
@ -426,7 +426,7 @@ read_response: if (fgets(buf, sizeof(buf), sfp) == NULL)
|
|||
}
|
||||
#ifdef BB_FEATURE_WGET_STATUSBAR
|
||||
if (quiet_flag==FALSE)
|
||||
printf("\n");
|
||||
putc('\n', stderr);
|
||||
#endif
|
||||
exit(EXIT_SUCCESS);
|
||||
}
|
||||
|
|
@ -735,7 +735,7 @@ progressmeter(int flag)
|
|||
* 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 $
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
4
wget.c
4
wget.c
|
|
@ -426,7 +426,7 @@ read_response: if (fgets(buf, sizeof(buf), sfp) == NULL)
|
|||
}
|
||||
#ifdef BB_FEATURE_WGET_STATUSBAR
|
||||
if (quiet_flag==FALSE)
|
||||
printf("\n");
|
||||
putc('\n', stderr);
|
||||
#endif
|
||||
exit(EXIT_SUCCESS);
|
||||
}
|
||||
|
|
@ -735,7 +735,7 @@ progressmeter(int flag)
|
|||
* 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 $
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue