]> git.cameronkatri.com Git - bsd-progress.git/commitdiff
gratuitous whitespace cleanup (before someone else jumps the gun...)
authorlukem <lukem@NetBSD.org>
Mon, 11 Apr 2005 01:49:31 +0000 (01:49 +0000)
committerlukem <lukem@NetBSD.org>
Mon, 11 Apr 2005 01:49:31 +0000 (01:49 +0000)
progressbar.c

index d13949040d3722cf60f2ce563067158bdee1a33e..717b032dd70f1501d3052bf0b1da5561663da7c0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: progressbar.c,v 1.6 2005/02/10 16:00:28 jmc Exp $      */
+/*     $NetBSD: progressbar.c,v 1.7 2005/04/11 01:49:31 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.6 2005/02/10 16:00:28 jmc Exp $");
+__RCSID("$NetBSD: progressbar.c,v 1.7 2005/04/11 01:49:31 lukem Exp $");
 #endif /* not lint */
 
 /*
@@ -211,11 +211,11 @@ progressmeter(int flag)
 
                        /*
                         * calculate the length of the `*' bar, ensuring that
-                        * the number of stars won't exceed the buffer size 
+                        * the number of stars won't exceed the buffer size
                         */
                barlength = MIN(sizeof(buf) - 1, ttywidth) - BAROVERHEAD;
                if (prefix)
-                       barlength -= strlen(prefix);
+                       barlength -= strlen(prefix);
                if (barlength > 0) {
                        i = barlength * ratio / 100;
                        len += snprintf(buf + len, BUFLEFT,