aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2007-05-05 16:57:54 +0000
committerchristos <christos@NetBSD.org>2007-05-05 16:57:54 +0000
commit8c90873d6905d650ba8edba93a5bc58d0236cad8 (patch)
tree1b99dd5ba47903b6a79c04fcca4b874d6f2eb3d1
parentf03f0dba0d741e3a0242e188ee85ecb48bca3d12 (diff)
downloadbsd-progress-8c90873d6905d650ba8edba93a5bc58d0236cad8.tar.gz
bsd-progress-8c90873d6905d650ba8edba93a5bc58d0236cad8.tar.zst
bsd-progress-8c90873d6905d650ba8edba93a5bc58d0236cad8.zip
PR/36280: Christer Folkesson: Remove extra const
-rw-r--r--progressbar.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/progressbar.c b/progressbar.c
index 34d3cc6..91a3069 100644
--- a/progressbar.c
+++ b/progressbar.c
@@ -1,4 +1,4 @@
-/* $NetBSD: progressbar.c,v 1.15 2007/04/17 05:52:03 lukem Exp $ */
+/* $NetBSD: progressbar.c,v 1.16 2007/05/05 16:57:54 christos Exp $ */
/*-
* Copyright (c) 1997-2007 The NetBSD Foundation, Inc.
@@ -38,7 +38,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: progressbar.c,v 1.15 2007/04/17 05:52:03 lukem Exp $");
+__RCSID("$NetBSD: progressbar.c,v 1.16 2007/05/05 16:57:54 christos Exp $");
#endif /* not lint */
/*
@@ -93,7 +93,7 @@ updateprogressmeter(int dummy)
/*
* List of order of magnitude suffixes, per IEC 60027-2.
*/
-static const char const *suffixes[] = {
+static const char *suffixes[] = {
"", /* 2^0 (byte) */
"KiB", /* 2^10 Kibibyte */
"MiB", /* 2^20 Mebibyte */