Merge pull request #178 from michalwy/missing-new-line

Add missing new line in error message
This commit is contained in:
Michał Mielewczyk 2019-05-30 09:12:36 +02:00 committed by GitHub
commit 6921aae9e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}