From 4a543d068d5e70fb3ce52395524618d6292c4bf2 Mon Sep 17 00:00:00 2001 From: Jonathan Rajotte Date: Tue, 13 Aug 2019 14:20:34 -0400 Subject: [PATCH] sink.ctf.fs: isa_length is now architecture_bit_width Signed-off-by: Jonathan Rajotte Change-Id: I30cac20017f7508ed170b936a7b90ebc2916b913 Reviewed-on: https://review.lttng.org/c/babeltrace/+/1905 Reviewed-by: Philippe Proulx CI-Build: Philippe Proulx Tested-by: jenkins --- src/plugins/ctf/fs-sink/fs-sink-trace.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/ctf/fs-sink/fs-sink-trace.c b/src/plugins/ctf/fs-sink/fs-sink-trace.c index d41e1d9f..3d647d2d 100644 --- a/src/plugins/ctf/fs-sink/fs-sink-trace.c +++ b/src/plugins/ctf/fs-sink/fs-sink-trace.c @@ -178,9 +178,9 @@ int append_lttng_trace_path_ust_uid(const struct fs_sink_trace *trace, g_string_append_printf(path, G_DIR_SEPARATOR_S "%" PRId64, bt_value_integer_signed_get(v)); - v = bt_trace_borrow_environment_entry_value_by_name_const(tc, "isa_length"); + v = bt_trace_borrow_environment_entry_value_by_name_const(tc, "architecture_bit_width"); if (!v || !bt_value_is_signed_integer(v)) { - BT_COMP_LOGI_STR("Couldn't get environment value: name=\"isa_length\""); + BT_COMP_LOGI_STR("Couldn't get environment value: name=\"architecture_bit_width\""); goto error; } -- 2.34.1