summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2026-03-17 21:40:25 +0000
committerLeah Rowe <leah@libreboot.org>2026-03-26 06:59:42 +0000
commitf5104c5893085c5e1bf31f06779bed522c757c29 (patch)
treede24cbe8b6d0d23b21c10ed9e3d053e7016687e0 /util
parent182ea657741ebbf9fd148436374f909f4ca23669 (diff)
79-character rule must be obeyed
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'util')
-rw-r--r--util/nvmutil/nvmutil.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/util/nvmutil/nvmutil.c b/util/nvmutil/nvmutil.c
index f14a6789..8b5c4381 100644
--- a/util/nvmutil/nvmutil.c
+++ b/util/nvmutil/nvmutil.c
@@ -2633,7 +2633,9 @@ x_i_mkstemp(char *template)
unsigned long len;
char *p;
- char ch[] = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
+ char ch[] =
+ "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
+
unsigned long r;
len = xstrxlen(template, PATH_LEN);