From b812967a6033de7c0682a048588397f987ebf55c Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Sun, 26 Jun 2022 14:17:05 -0600 Subject: [PATCH] Change 'handle_id' to be a local variable The global variable 'handle_id' in tracectf.c is only used in a single function, so change it to be a local variable. Reviewed-by: Keith Seitz --- gdb/tracectf.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gdb/tracectf.c b/gdb/tracectf.c index c2b55426b41..0ed2092c32b 100644 --- a/gdb/tracectf.c +++ b/gdb/tracectf.c @@ -855,7 +855,6 @@ public: }; /* The struct pointer for current CTF directory. */ -static int handle_id = -1; static struct bt_context *ctx = NULL; static struct bt_ctf_iter *ctf_iter = NULL; /* The position of the first packet containing trace frame. */ @@ -895,7 +894,7 @@ ctf_open_dir (const char *dirname) ctx = bt_context_create (); if (ctx == NULL) error (_("Unable to create bt_context")); - handle_id = bt_context_add_trace (ctx, dirname, "ctf", NULL, NULL, NULL); + int handle_id = bt_context_add_trace (ctx, dirname, "ctf", NULL, NULL, NULL); if (handle_id < 0) { ctf_destroy (); -- 2.30.2