aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--miscutils/flashcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/flashcp.c b/miscutils/flashcp.c
index 36b6efe1e..b526566a4 100644
--- a/miscutils/flashcp.c
+++ b/miscutils/flashcp.c
@@ -33,7 +33,7 @@ static void progress(int mode, uoff_t count, uoff_t total)
33 if (total) 33 if (total)
34 percent = (unsigned) (percent / total); 34 percent = (unsigned) (percent / total);
35 printf("\r%s: %"OFF_FMT"u/%"OFF_FMT"u (%u%%) ", 35 printf("\r%s: %"OFF_FMT"u/%"OFF_FMT"u (%u%%) ",
36 (mode == -1) ? "Erasing block" : ((mode == 0) ? "Writing kb" : "Verifying kb"), 36 (mode < 0) ? "Erasing block" : ((mode == 0) ? "Writing kb" : "Verifying kb"),
37 count, total, (unsigned)percent); 37 count, total, (unsigned)percent);
38 fflush_all(); 38 fflush_all();
39} 39}