Message ID | 20190314151012.905-3-ykaradzhov@vmware.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
Series | Various modifications and fixes toward KS 1.0 | expand |
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);
The error message, printed whene kshark_open_json_file() fails, puts the period on a new line. Signed-off-by: Yordan Karadzhov <ykaradzhov@vmware.com> --- kernel-shark/src/libkshark-configio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)