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-17 21:40:25 +0000
commitd01aedd289a1b21a4b9aaf5b10c7fd11b006cd17 (patch)
tree37dd30bd3fca9a06248e918511df44bab0947b19 /util
parent3fba6f2d64469f1ea37c39546e2d4d2c7e49487b (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);