[ PATCH v4 5/6] sign-file: use const with a global string constant

From: Shreenidhi Shedi
Date: Tue Feb 21 2023 - 12:08:26 EST


From: Shreenidhi Shedi <yesshedi@xxxxxxxxx>

Fix a space issue (cosmetic)
Both reported by checkpatch.

Signed-off-by: Shreenidhi Shedi <yesshedi@xxxxxxxxx>
---
scripts/sign-file.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/sign-file.c b/scripts/sign-file.c
index b6856fd5cb10..b6d6bcbf5a04 100644
--- a/scripts/sign-file.c
+++ b/scripts/sign-file.c
@@ -71,7 +71,7 @@ struct module_signature {

#define PKEY_ID_PKCS7 2

-static char magic_number[] = "~Module signature appended~\n";
+static const char magic_number[] = "~Module signature appended~\n";

static __attribute__((noreturn))
void format(void)
@@ -116,7 +116,7 @@ static void drain_openssl_errors(void)
if (__cond) { \
errx(1, fmt, ## __VA_ARGS__); \
} \
- } while(0)
+ } while (0)

static const char *key_pass;

--
2.39.1