From 8f2be4853d3b76c38585ecf74ea8983d6451bb2d Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Mon, 13 Nov 2017 18:23:56 -0500 Subject: [PATCH] Typo: informations -> information MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Information is an uncountable noun in english. Signed-off-by: Michael Jeanson Signed-off-by: Jérémie Galarneau --- cli/babeltrace.c | 2 +- plugins/ctf/fs-src/file.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/babeltrace.c b/cli/babeltrace.c index 938aadf1..dfa4512d 100644 --- a/cli/babeltrace.c +++ b/cli/babeltrace.c @@ -2236,7 +2236,7 @@ int set_stream_intersections(struct cmd_run_ctx *ctx, stream_infos = bt_value_map_get(trace_info, "streams"); if (!stream_infos || !bt_value_is_array(stream_infos)) { ret = -1; - BT_LOGD_STR("Cannot retrieve stream informations from trace in query result."); + BT_LOGD_STR("Cannot retrieve stream information from trace in query result."); goto error; } diff --git a/plugins/ctf/fs-src/file.c b/plugins/ctf/fs-src/file.c index aa5b8ff6..585faef8 100644 --- a/plugins/ctf/fs-src/file.c +++ b/plugins/ctf/fs-src/file.c @@ -96,7 +96,7 @@ int ctf_fs_file_open(struct ctf_fs_file *file, const char *mode) BT_LOGD("Opened file: %p", file->fp); if (fstat(fileno(file->fp), &stat)) { - BT_LOGE("Cannot get file informations: %s", strerror(errno)); + BT_LOGE("Cannot get file information: %s", strerror(errno)); goto error; } -- 2.34.1