diff options
author | Frantisek Sumsal <frantisek@sumsal.cz> | 2020-06-09 21:31:10 +0200 |
---|---|---|
committer | Frantisek Sumsal <frantisek@sumsal.cz> | 2020-06-09 21:31:10 +0200 |
commit | dfa64b64a7e2b9bffea260953b30e6236047fffb (patch) | |
tree | 32672ff0275f1b367965884c5c51a8d33dea159c /src/core/dbus-manager.c | |
parent | b36746c90e8fade41d323ebdd89d9e41546e099b (diff) | |
download | systemd-dfa64b64a7e2b9bffea260953b30e6236047fffb.tar.gz |
tree-wide: mark assert()-only variables as unused
to make a compilation with -Db_ndebug=true and --werror pass once again.
Diffstat (limited to 'src/core/dbus-manager.c')
-rw-r--r-- | src/core/dbus-manager.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/dbus-manager.c b/src/core/dbus-manager.c index 51254b92da..2a3c8e776a 100644 --- a/src/core/dbus-manager.c +++ b/src/core/dbus-manager.c @@ -347,7 +347,7 @@ static int property_set_kexec_watchdog( void *userdata, sd_bus_error *error) { - Manager *m = userdata; + _unused_ Manager *m = userdata; assert(m); assert(bus); |