From 884a6779f9b120dbe9964df30fa3ffd185ca93b7 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sat, 7 Mar 2026 00:01:27 +0000 Subject: util/nvmutil: make gbe_st local, not static/global forgot to remove static when making it local Signed-off-by: Leah Rowe --- util/nvmutil/nvmutil.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/nvmutil/nvmutil.c b/util/nvmutil/nvmutil.c index 942d98bf..d439684b 100644 --- a/util/nvmutil/nvmutil.c +++ b/util/nvmutil/nvmutil.c @@ -353,7 +353,7 @@ open_dev_urandom(void) static void open_gbe_file(void) { - static struct stat gbe_st; + struct stat gbe_st; xopen(&gbe_fd, fname, gbe_flags, &gbe_st); -- cgit v1.2.1