diff options
| author | Leah Rowe <leah@libreboot.org> | 2026-03-03 15:31:31 +0000 |
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2026-03-03 15:31:31 +0000 |
| commit | 036ac6dc3920c0b191a958cc7fd1239b04c4407f (patch) | |
| tree | 398305eb7cebd01a64f430c9d2424de047d6e129 /util/nvmutil/nvmutil.c | |
| parent | 48638e9a229230fd87d72750eb563d3768cedbd0 (diff) | |
util/nvmutil: rename openFiles to open_files
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 c7b79e6e..8167100c 100644 --- a/util/nvmutil/nvmutil.c +++ b/util/nvmutil/nvmutil.c @@ -16,7 +16,7 @@ static void set_cmd(int, char **); static void set_io_flags(int, char **); -static void openFiles(void); +static void open_files(void); static void checkdir(const char *); static void xopen(int *, const char *, int, struct stat *); static void read_gbe(void); @@ -114,7 +114,7 @@ main(int argc, char *argv[]) err_if(pledge("stdio rpath wpath", NULL) == -1); } #endif - openFiles(); + open_files(); #ifdef __OpenBSD__ err_if(pledge("stdio", NULL) == -1); #endif @@ -172,7 +172,7 @@ set_io_flags(int argc, char *argv[]) } static void -openFiles(void) +open_files(void) { struct stat st; struct stat st_rfd; |
