diff options
| author | Leah Rowe <leah@libreboot.org> | 2026-03-07 00:01:27 +0000 |
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2026-03-07 00:01:27 +0000 |
| commit | 884a6779f9b120dbe9964df30fa3ffd185ca93b7 (patch) | |
| tree | 6c5cac87fbf8c1daa9a4d8cc5d92ef07912e8404 | |
| parent | 44e6b00626437881fb31f6c834f57e2b66541c6b (diff) | |
util/nvmutil: make gbe_st local, not static/global
forgot to remove static when making it local
Signed-off-by: Leah Rowe <leah@libreboot.org>
| -rw-r--r-- | util/nvmutil/nvmutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
