[PATCH 06/14] show_progress: print spaces with %*s

Sascha Hauer s.hauer at pengutronix.de
Tue Apr 19 00:36:44 PDT 2016


Removes the need for include/linux/stringify.h in the progress
bar code.

Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
---
 lib/show_progress.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lib/show_progress.c b/lib/show_progress.c
index f9aa1a9..a32a13c 100644
--- a/lib/show_progress.c
+++ b/lib/show_progress.c
@@ -21,7 +21,6 @@
 #include <fs.h>
 #include <progress.h>
 #include <asm-generic/div64.h>
-#include <linux/stringify.h>
 
 #define HASHES_PER_LINE	65
 
@@ -58,7 +57,7 @@ void init_progression_bar(int max)
 	progress_max = max;
 	spin = 0;
 	if (progress_max && progress_max != FILESIZE_MAX)
-		printf("\t[%"__stringify(HASHES_PER_LINE)"s]\r\t[", "");
+		printf("\t[%*s]\r\t[", HASHES_PER_LINE, "");
 	else
 		printf("\t");
 }
-- 
2.7.0




More information about the barebox mailing list