diff options
| author | Leah Rowe <leah@libreboot.org> | 2026-03-06 22:20:15 +0000 |
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2026-03-06 22:20:15 +0000 |
| commit | 4635a0eae947233e955937e79d8b9cf0edfeb6da (patch) | |
| tree | aa8e0a3801f6365bd97863a6077761d75a883183 /util/nvmutil/nvmutil.c | |
| parent | 0f5fcbd883323b2df3ea95a128b5421079a64ff7 (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/nvmutil/nvmutil.c')
| -rw-r--r-- | util/nvmutil/nvmutil.c | 6 |
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); |
