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.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/mdk-stage1/log.c b/mdk-stage1/log.c
index d4a1c71c7..5379c96dd 100644
--- a/mdk-stage1/log.c
+++ b/mdk-stage1/log.c
@@ -33,15 +33,11 @@
static FILE * logfile = NULL;
-void vlog_message_nobs(const char * s, va_list args)
-{
- fprintf(logfile, "* ");
- vfprintf(logfile, s, args);
-}
void vlog_message(const char * s, va_list args)
{
- vlog_message_nobs(s, args);
+ fprintf(logfile, "* ");
+ vfprintf(logfile, s, args);
fprintf(logfile, "\n");
fflush(logfile);
}