summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2026-03-06 22:20:15 +0000
committerLeah Rowe <leah@libreboot.org>2026-03-06 22:20:15 +0000
commit4635a0eae947233e955937e79d8b9cf0edfeb6da (patch)
treeaa8e0a3801f6365bd97863a6077761d75a883183 /util
parent0f5fcbd883323b2df3ea95a128b5421079a64ff7 (diff)
util/nvmutil: cleaned up a few prototypes
make them match how they're declared Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'util')
-rw-r--r--util/nvmutil/nvmutil.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/nvmutil/nvmutil.c b/util/nvmutil/nvmutil.c
index d4cf597d..23755606 100644
--- a/util/nvmutil/nvmutil.c
+++ b/util/nvmutil/nvmutil.c
@@ -28,9 +28,9 @@
#endif
static void reset_global_state(void);
-static void set_cmd(int argc, char **argv);
-static void check_cmd_args(int argc, char **argv);
-static void set_io_flags(int argc, char **argv);
+static void set_cmd(int argc, char *argv[]);
+static void check_cmd_args(int argc, char *argv[]);
+static void set_io_flags(int argc, char *argv[]);
static void open_gbe_file(void);
#ifndef HAVE_ARC4RANDOM
static void open_dev_urandom(void);