sonyupd: Fix a missing \n

This commit is contained in:
Solomon Peachy 2020-12-10 17:48:06 -05:00
parent ceda9a2853
commit f9ec0df5e7
1 changed files with 1 additions and 1 deletions

View File

@ -659,7 +659,7 @@ static int upd895_dump_status(struct upd_ctx *ctx)
INFO("Media: %s (%02x)\n", upd_ribbons(ctx->conn->type, ctx->stsbuf.ribbon), ctx->stsbuf.ribbon); INFO("Media: %s (%02x)\n", upd_ribbons(ctx->conn->type, ctx->stsbuf.ribbon), ctx->stsbuf.ribbon);
if (ctx->conn->type != P_SONY_UPD895 && ctx->conn->type != P_SONY_UPD897) { if (ctx->conn->type != P_SONY_UPD895 && ctx->conn->type != P_SONY_UPD897) {
INFO("Media remaining: %d/%d", ctx->printbuf.remain, sonyupd_media_maxes(ctx->conn->type, ctx->stsbuf.ribbon)); INFO("Media remaining: %d/%d\n", ctx->printbuf.remain, sonyupd_media_maxes(ctx->conn->type, ctx->stsbuf.ribbon));
} }
return CUPS_BACKEND_OK; return CUPS_BACKEND_OK;
} }