From 874cf79422f168c4c583645b41227ec57aefda2e Mon Sep 17 00:00:00 2001 From: "Kelvin M. Klann" Date: Thu, 11 May 2023 15:15:47 -0300 Subject: Standardize usage string var declarations Changes: * Name them all "usage_str" * Make them const For the latter item, see commit eb20f52ef ("Make list of paths const to fix a false positive of gcc analyzer", 2022-07-27) / PR #5275. --- src/firecfg/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/firecfg') diff --git a/src/firecfg/main.c b/src/firecfg/main.c index c9dc27b1b..855523e55 100644 --- a/src/firecfg/main.c +++ b/src/firecfg/main.c @@ -24,7 +24,7 @@ int arg_debug = 0; char *arg_bindir = "/usr/local/bin"; int arg_guide = 0; -static char *usage_str = +static const char *const usage_str = "Firecfg is the desktop configuration utility for Firejail software. The utility\n" "creates several symbolic links to firejail executable. This allows the user to\n" "sandbox applications automatically, just by clicking on a regular desktop\n" -- cgit v1.2.3-54-g00ecf