]> sourceware.org Git - lvm2.git/commitdiff
const: cmirrord array
authorZdenek Kabelac <zkabelac@redhat.com>
Fri, 3 May 2024 18:24:29 +0000 (20:24 +0200)
committerZdenek Kabelac <zkabelac@redhat.com>
Fri, 3 May 2024 23:01:57 +0000 (01:01 +0200)
daemons/cmirrord/clogd.c
daemons/cmirrord/logging.c
daemons/cmirrord/logging.h

index a18354784a3ab6ec625646652a2c72d7dfb6662c..9ba86335678fbdcda5590647bc1ebe3807b143ce 100644 (file)
@@ -43,14 +43,14 @@ static void usage (FILE *dest)
 int main(int argc, char *argv[])
 {
        int foreground_mode = 0;
-       struct option longopts[] = {
+       static const struct option _long_options[] = {
                { "foreground", no_argument, NULL, 'f' },
                { "help"      , no_argument, NULL, 'h' },
                { 0, 0, 0, 0 }
        };
        int opt;
 
-       while ((opt = getopt_long (argc, argv, "fh", longopts, NULL)) != -1) {
+       while ((opt = getopt_long (argc, argv, "fh", _long_options, NULL)) != -1) {
                switch (opt) {
                case 'f':
                        foreground_mode = 1;
index 2db66f443ab133514a0f88e1d3bc023dff393a14..8f5f1726aa95f99e1696782712512bb283c7aacb 100644 (file)
@@ -11,7 +11,7 @@
  */
 #include "logging.h"
 
-const char *__rq_types_off_by_one[] = {
+const char * const __rq_types_off_by_one[] = {
        "DM_ULOG_CTR",
        "DM_ULOG_DTR",
        "DM_ULOG_PRESUSPEND",
index 82ebab19b9a94b7ce5a0f828d7c002a6e67cd30e..ce590b3275c534526524cb3ba64830626d957e06 100644 (file)
@@ -20,7 +20,7 @@
 /* SHORT_UUID - print last 8 chars of a string */
 #define SHORT_UUID(x) (strlen(x) > 8) ? ((x) + (strlen(x) - 8)) : (x)
 
-extern const char *__rq_types_off_by_one[];
+extern const char * const __rq_types_off_by_one[];
 #define RQ_TYPE(x) __rq_types_off_by_one[(x) - 1]
 
 extern int log_tabbing;
This page took 0.037136 seconds and 5 git commands to generate.