aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/serialqueue.c
diff options
context:
space:
mode:
Diffstat (limited to 'klippy/serialqueue.c')
-rw-r--r--klippy/serialqueue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/serialqueue.c b/klippy/serialqueue.c
index 6274e277..7e8e770b 100644
--- a/klippy/serialqueue.c
+++ b/klippy/serialqueue.c
@@ -300,7 +300,7 @@ message_alloc_and_encode(uint32_t *data, int len)
return qm;
fail:
- fprintf(stderr, "Encode error\n");
+ errorf("Encode error");
qm->len = 0;
return qm;
}
@@ -856,7 +856,7 @@ serialqueue_free_commandqueue(struct command_queue *cq)
if (!cq)
return;
if (!list_empty(&cq->ready_queue) || !list_empty(&cq->stalled_queue)) {
- fprintf(stderr, "Memory leak! Can't free non-empty commandqueue\n");
+ errorf("Memory leak! Can't free non-empty commandqueue");
return;
}
free(cq);