summaryrefslogtreecommitdiff
path: root/src/log.c
diff options
context:
space:
mode:
authorPhil Jones <philj56@gmail.com>2022-06-10 18:25:43 +0100
committerPhil Jones <philj56@gmail.com>2022-06-10 18:25:43 +0100
commita6ac47fb763fd4448c0269e274f061226fa0f10a (patch)
treeb51f88a052f73c9575e6f4bbacf03da64200a83a /src/log.c
parent03c39b749d86a0b83d866197fd9fa2d48fd061e4 (diff)
Minor cleanup.
Diffstat (limited to 'src/log.c')
-rw-r--r--src/log.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/log.c b/src/log.c
index 2d7e857..97dcdbe 100644
--- a/src/log.c
+++ b/src/log.c
@@ -36,7 +36,6 @@ void log_error(const char *const fmt, ...)
va_list args;
va_start(args, fmt);
fprintf(stderr, "[ERROR]: ");
- print_indent(stderr);
vfprintf(stderr, fmt, args);
va_end(args);
}