diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-03-29 23:14:58 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-03-30 15:21:54 +0100 |
commit | 166de4255ca04814d703cdc4efa479fb6aa391dd (patch) | |
tree | 6d6b7e2dcf27c780fcb6c999866e51fe50a9bd41 /src/core/dbus.c | |
parent | bcadcb64ee9831013a223d9efbc784e7cce23a44 (diff) |
dbus: let's make this const array static
Diffstat (limited to 'src/core/dbus.c')
-rw-r--r-- | src/core/dbus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/dbus.c b/src/core/dbus.c index 236ebc99d9..62cbf89f64 100644 --- a/src/core/dbus.c +++ b/src/core/dbus.c @@ -1054,7 +1054,7 @@ fail: static int bus_init_private(Manager *m) { DBusError error; int r; - const char *const external_only[] = { + static const char *const external_only[] = { "EXTERNAL", NULL }; |