From 190700621f95160d364f8ec1d3e360246c41ce75 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 29 Apr 2015 18:35:10 +0200 Subject: sd-bus: drop bus parameter from message callback prototype This should simplify the prototype a bit. The bus parameter is redundant in most cases, and in the few where it matters it can be derived from the message via sd_bus_message_get_bus(). --- src/core/dbus-snapshot.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/core/dbus-snapshot.c') diff --git a/src/core/dbus-snapshot.c b/src/core/dbus-snapshot.c index 0be46c288e..cfe44c9c15 100644 --- a/src/core/dbus-snapshot.c +++ b/src/core/dbus-snapshot.c @@ -25,11 +25,10 @@ #include "snapshot.h" #include "dbus-snapshot.h" -int bus_snapshot_method_remove(sd_bus *bus, sd_bus_message *message, void *userdata, sd_bus_error *error) { +int bus_snapshot_method_remove(sd_bus_message *message, void *userdata, sd_bus_error *error) { Snapshot *s = userdata; int r; - assert(bus); assert(message); assert(s); -- cgit v1.2.3-54-g00ecf