The error message, printed whene kshark_open_json_file() fails, puts the period on a new line. Signed-off-by: Yordan Karadzhov <ykaradzhov@xxxxxxxxxx> --- kernel-shark/src/libkshark-configio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel-shark/src/libkshark-configio.c b/kernel-shark/src/libkshark-configio.c index ab88864..2bd5600 100644 --- a/kernel-shark/src/libkshark-configio.c +++ b/kernel-shark/src/libkshark-configio.c @@ -1624,7 +1624,7 @@ static struct json_object *kshark_open_json_file(const char *file_name, fail: /* The document has a wrong type. */ - fprintf(stderr, "Failed to open Json file %s\n.", file_name); + fprintf(stderr, "Failed to open Json file %s.\n", file_name); fprintf(stderr, "The document has a wrong type.\n"); json_object_put(jobj); -- 2.19.1