diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-03-31 16:26:14 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-03-31 16:26:14 +0200 |
commit | 52f3ba915bdce4d7476c3ea53b8371deff5f567d (patch) | |
tree | ae3536199daa0c2676b7fc87e2043a4a3bc4f12d /src/libsystemd-bus/bus-match.c | |
parent | 392d5b378ceae5e1fd7c91ca545fcf4cd105744a (diff) |
bus: s/sd_message_handler_t/sd_bus_message_handler_t/g
Diffstat (limited to 'src/libsystemd-bus/bus-match.c')
-rw-r--r-- | src/libsystemd-bus/bus-match.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libsystemd-bus/bus-match.c b/src/libsystemd-bus/bus-match.c index ff1edfaaed..972ac8e00e 100644 --- a/src/libsystemd-bus/bus-match.c +++ b/src/libsystemd-bus/bus-match.c @@ -481,7 +481,7 @@ static int bus_match_find_compare_value( static int bus_match_add_leaf( struct bus_match_node *where, - sd_message_handler_t callback, + sd_bus_message_handler_t callback, void *userdata, struct bus_match_node **ret) { @@ -511,7 +511,7 @@ static int bus_match_add_leaf( static int bus_match_find_leaf( struct bus_match_node *where, - sd_message_handler_t callback, + sd_bus_message_handler_t callback, void *userdata, struct bus_match_node **ret) { @@ -778,7 +778,7 @@ fail: int bus_match_add( struct bus_match_node *root, const char *match, - sd_message_handler_t callback, + sd_bus_message_handler_t callback, void *userdata, struct bus_match_node **ret) { @@ -819,7 +819,7 @@ finish: int bus_match_remove( struct bus_match_node *root, const char *match, - sd_message_handler_t callback, + sd_bus_message_handler_t callback, void *userdata) { struct match_component *components = NULL; |