diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rwxr-xr-x | gdb/configure | 2 | ||||
-rw-r--r-- | gdb/configure.ac | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 85a5444..acd29c3 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2016-07-05 Jan Kratochvil <jan.kratochvil@redhat.com> + + * configure: Regenerate. + * configure.ac (HAVE_LIBBABELTRACE): Fix pos variable dereference. + 2016-07-01 Don Breazeal <donb@codesourcery.com> * remote.c (remote_get_memory_xfer_limit): New function. diff --git a/gdb/configure b/gdb/configure index ea11b50..81a037a 100755 --- a/gdb/configure +++ b/gdb/configure @@ -16422,7 +16422,7 @@ struct bt_iter_pos *pos = bt_iter_get_pos (bt_ctf_get_iter (NULL)); 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); 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); |