diff options
author | Lennart Poettering <lennart@poettering.net> | 2019-03-22 19:19:32 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2019-03-25 14:04:34 +0100 |
commit | b82f71c7ff3f21fd07037c085c824ae78cf7442e (patch) | |
tree | bc206bcc68e8dde2529aeefb69e73de14e138eb4 /src/udev/udev-builtin.c | |
parent | dbus-unit: remove redundant check (diff) | |
download | systemd-b82f71c7ff3f21fd07037c085c824ae78cf7442e.tar.xz systemd-b82f71c7ff3f21fd07037c085c824ae78cf7442e.zip |
tree-wide: constify a few static string tables
Diffstat (limited to 'src/udev/udev-builtin.c')
-rw-r--r-- | src/udev/udev-builtin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/udev/udev-builtin.c b/src/udev/udev-builtin.c index 48ce295a46..7bbfd143f6 100644 --- a/src/udev/udev-builtin.c +++ b/src/udev/udev-builtin.c @@ -12,7 +12,7 @@ static bool initialized; -static const struct udev_builtin *builtins[_UDEV_BUILTIN_MAX] = { +static const struct udev_builtin *const builtins[_UDEV_BUILTIN_MAX] = { #if HAVE_BLKID [UDEV_BUILTIN_BLKID] = &udev_builtin_blkid, #endif |