summaryrefslogtreecommitdiffstats
path: root/main/apk-tools/0003-state-make-the-progress-bar-look-nice.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/apk-tools/0003-state-make-the-progress-bar-look-nice.patch')
-rw-r--r--main/apk-tools/0003-state-make-the-progress-bar-look-nice.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/main/apk-tools/0003-state-make-the-progress-bar-look-nice.patch b/main/apk-tools/0003-state-make-the-progress-bar-look-nice.patch
deleted file mode 100644
index 5dbedc3a2..000000000
--- a/main/apk-tools/0003-state-make-the-progress-bar-look-nice.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From 762e0c717bcae8c2d0f46ba4f35232b773ac8419 Mon Sep 17 00:00:00 2001
-From: William Pitcock <nenolod@dereferenced.org>
-Date: Sat, 9 Apr 2011 08:16:46 -0500
-Subject: [PATCH 3/7] state: make the progress bar look nice
-
----
- src/state.c | 6 +++---
- 1 files changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/src/state.c b/src/state.c
-index cbc0f25..6de3629 100644
---- a/src/state.c
-+++ b/src/state.c
-@@ -712,15 +712,15 @@ static void apk_count_change(struct apk_change *change, struct apk_stats *stats)
-
- static void apk_draw_progress(int percent)
- {
-- const int bar_width = (apk_screen_width - 15);
-+ const int bar_width = (apk_screen_width - 7);
- int i;
-
-- fputs("\e7-[", stderr);
-+ fprintf(stderr, "\e7%3i%% [", percent);
- for (i = 0; i < bar_width * percent / 100; i++)
- fputc('#', stderr);
- for (; i < bar_width; i++)
- fputc(' ', stderr);
-- fprintf(stderr, "]- %3i%%", percent);
-+ fputc(']', stderr);
- fflush(stderr);
- fputs("\e8\e[0K", stderr);
- }
---
-1.7.4.5
-