diff options
| author | Leah Rowe <leah@libreboot.org> | 2026-03-09 04:37:48 +0000 |
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2026-03-09 04:37:48 +0000 |
| commit | 532d723ccda436eebec61719f7b5f5689001a546 (patch) | |
| tree | 5c81c35e8e19bbc9f973ad229e739af17f18a25c | |
| parent | 14c25887722a5b4a261af52a93547617aff658cc (diff) | |
util/nvmutil: fix indentation in setmac
Signed-off-by: Leah Rowe <leah@libreboot.org>
| -rw-r--r-- | util/nvmutil/nvmutil.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/util/nvmutil/nvmutil.c b/util/nvmutil/nvmutil.c index 860cc2a0..3ec92048 100644 --- a/util/nvmutil/nvmutil.c +++ b/util/nvmutil/nvmutil.c @@ -767,11 +767,11 @@ cmd_helper_setmac(void) { size_t partnum; - #ifdef NVMUTIL_ARC4RANDOM_BUF - printf("Randomisation method: arc4random_buf\n"); - #else - printf("Randomisation method: %s\n", rname); - #endif +#ifdef NVMUTIL_ARC4RANDOM_BUF + printf("Randomisation method: arc4random_buf\n"); +#else + printf("Randomisation method: %s\n", rname); +#endif printf("MAC address to be written: %s\n", mac_str); parse_mac_string(); |
