From d27f81c588dfb1d024eac2b3c496759adce5a3a9 Mon Sep 17 00:00:00 2001 From: Michal Wysoczanski Date: Wed, 29 May 2019 23:57:23 +0200 Subject: [PATCH] Add missing new line in error message Signed-off-by: Michal Wysoczanski --- src/ocf_ctx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ocf_ctx.c b/src/ocf_ctx.c index 5bfc4a2..60eeaac 100644 --- a/src/ocf_ctx.c +++ b/src/ocf_ctx.c @@ -45,7 +45,7 @@ int ocf_ctx_register_volume_type(ocf_ctx_t ctx, uint8_t type_id, return 0; err: - ocf_log(ctx, log_err, "Failed to register volume operations '%s'", + ocf_log(ctx, log_err, "Failed to register volume operations '%s'\n", properties->name); return result; }