summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/log.c
diff options
context:
space:
mode:
Diffstat (limited to 'mdk-stage1/log.c')
-rw-r--r--mdk-stage1/log.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/mdk-stage1/log.c b/mdk-stage1/log.c
index 8faa166c0..d4a1c71c7 100644
--- a/mdk-stage1/log.c
+++ b/mdk-stage1/log.c
@@ -68,23 +68,6 @@ void log_perror(char *msg)
log_message("%s: %s", msg, strerror(errno));
}
-void log_progression(int divide_for_count)
-{
- static int count = 0;
- if (count <= 0) {
- fprintf(logfile, ".");
- fflush(logfile);
- count = divide_for_count;
- }
- else
- count--;
-}
-
-void log_progression_done(void)
-{
- fprintf(logfile, "done\n");
-}
-
void open_log(void)
{