]> git.cameronkatri.com Git - bsd-progress.git/commitdiff
Use size_t instead of int where appropriate.
authorlukem <lukem@NetBSD.org>
Thu, 19 May 2005 03:05:04 +0000 (03:05 +0000)
committerlukem <lukem@NetBSD.org>
Thu, 19 May 2005 03:05:04 +0000 (03:05 +0000)
progressbar.c

index 717b032dd70f1501d3052bf0b1da5561663da7c0..931e01b696d110da55faacecaf4318d52b3600e0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: progressbar.c,v 1.7 2005/04/11 01:49:31 lukem Exp $    */
+/*     $NetBSD: progressbar.c,v 1.8 2005/05/19 03:05:04 lukem Exp $    */
 
 /*-
  * Copyright (c) 1997-2003 The NetBSD Foundation, Inc.
@@ -38,7 +38,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: progressbar.c,v 1.7 2005/04/11 01:49:31 lukem Exp $");
+__RCSID("$NetBSD: progressbar.c,v 1.8 2005/05/19 03:05:04 lukem Exp $");
 #endif /* not lint */
 
 /*
@@ -121,7 +121,8 @@ progressmeter(int flag)
        struct timeval td;
        off_t abbrevsize, bytespersec;
        double elapsed;
-       int ratio, barlength, i, remaining;
+       int ratio, i, remaining;
+       size_t barlength;
 
                        /*
                         * Work variables for progress bar.
@@ -132,7 +133,7 @@ progressmeter(int flag)
                         *      these appropriately.
                         */
 #endif
-       int len;
+       size_t          len;
        char            buf[256];       /* workspace for progress bar */
 #ifndef NO_PROGRESS
 #define        BAROVERHEAD     43              /* non `*' portion of progress bar */
@@ -296,7 +297,8 @@ ptransfer(int siginfo)
        struct timeval now, td, wait;
        double elapsed;
        off_t bytespersec;
-       int remaining, hh, i, len;
+       int remaining, hh, i;
+       size_t len;
 
        char buf[256];          /* Work variable for transfer status. */