[progressmeter.c]
     allow WARNINGS=yes; ok djm@
This commit is contained in:
Damien Miller 2003-01-14 22:23:23 +11:00
parent 0946d876f9
commit 71a5141534
2 changed files with 7 additions and 3 deletions

View File

@ -7,6 +7,9 @@
[log.c]
set fatal_cleanups to NULL in fatal_remove_all_cleanups();
dtucker@zip.com.au
- markus@cvs.openbsd.org 2003/01/12 16:57:02
[progressmeter.c]
allow WARNINGS=yes; ok djm@
20030113
- (djm) Rework openbsd-compat/setproctitle.c a bit: move emulation type
@ -1010,4 +1013,4 @@
save auth method before monitor_reset_key_state(); bugzilla bug #284;
ok provos@
$Id: ChangeLog,v 1.2568 2003/01/14 11:22:43 djm Exp $
$Id: ChangeLog,v 1.2569 2003/01/14 11:23:23 djm Exp $

View File

@ -60,11 +60,12 @@
*/
#include "includes.h"
RCSID("$OpenBSD: progressmeter.c,v 1.1 2003/01/10 08:19:07 fgsch Exp $");
RCSID("$OpenBSD: progressmeter.c,v 1.2 2003/01/12 16:57:02 markus Exp $");
#include <libgen.h>
#include "atomicio.h"
#include "progressmeter.h"
/* Number of seconds before xfer considered "stalled". */
#define STALLTIME 5
@ -81,7 +82,7 @@ static int foregroundproc(void);
static int get_tty_width(void);
/* Visual statistics about files as they are transferred. */
static void draw_progress_meter();
static void draw_progress_meter(void);
/* Time a transfer started. */
static struct timeval start;