Typo: informations -> information
authorMichael Jeanson <mjeanson@efficios.com>
Mon, 13 Nov 2017 23:23:56 +0000 (18:23 -0500)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Wed, 6 Dec 2017 15:51:27 +0000 (10:51 -0500)
Information is an uncountable noun in english.

Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
cli/babeltrace.c
plugins/ctf/fs-src/file.c

index 938aadf1fe272f3d82c8b75bf98b02698bcedec1..dfa4512d627208959b944ae8e933ca9dd00cb650 100644 (file)
@@ -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;
                }
 
index aa5b8ff68871f58252d2c07f56239cce1ea9ad5b..585faef876d6f6e03ebd1c0de1b283cf396af37d 100644 (file)
@@ -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;
        }
 
This page took 0.027594 seconds and 4 git commands to generate.