gdb/ChangeLog 2016-07-03 Jan Kratochvil * configure: Regenerate. * configure.ac (HAVE_LIBBABELTRACE): Fix pos variable dereference. diff --git a/gdb/configure.ac b/gdb/configure.ac index 920c228..5e2e938 100644 --- a/gdb/configure.ac +++ b/gdb/configure.ac @@ -2309,7 +2309,7 @@ else struct bt_ctf_event *event = NULL; const struct bt_definition *scope; - pos.type = BT_SEEK_BEGIN; + pos->type = BT_SEEK_BEGIN; bt_iter_set_pos (bt_ctf_get_iter (NULL), pos); scope = bt_ctf_get_top_level_scope (event, BT_STREAM_EVENT_HEADER);