From 4a7a17fabf5eaf43644e50006e1c5267afae3281 Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Fri, 28 Sep 2018 20:14:34 -0400 Subject: [PATCH] canonselphy: Slightly better error logging. --- backend_canonselphy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend_canonselphy.c b/backend_canonselphy.c index 7ec1b31..252e9bb 100644 --- a/backend_canonselphy.c +++ b/backend_canonselphy.c @@ -764,7 +764,7 @@ static int canonselphy_read_parse(void *vctx, const void **vjob, int data_fd, in } if (printer_type != ctx->type) { - ERROR("Printer/Job mismatch (%d/%d)\n", ctx->type, ctx->printer->type); + ERROR("Printer/Job mismatch (%d/%d/%d)\n", ctx->type, ctx->printer->type, printer_type); free(job); return CUPS_BACKEND_CANCEL; }