From ed163c73f78a3dfcce76d3fa1d7d2e53e44af584 Mon Sep 17 00:00:00 2001 From: Stephan Bosch Date: Sun, 1 Dec 2019 11:27:29 +0100 Subject: [PATCH] plugins: push-notification: Reformat push-notification-event-mailboxunsubscribe.c. --- ...sh-notification-event-mailboxunsubscribe.c | 44 +++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/src/plugins/push-notification/push-notification-event-mailboxunsubscribe.c b/src/plugins/push-notification/push-notification-event-mailboxunsubscribe.c index a945b2b66e..b8d078f35e 100644 --- a/src/plugins/push-notification/push-notification-event-mailboxunsubscribe.c +++ b/src/plugins/push-notification/push-notification-event-mailboxunsubscribe.c @@ -8,41 +8,41 @@ #include "push-notification-event-mailboxunsubscribe.h" #include "push-notification-txn-mbox.h" - #define EVENT_NAME "MailboxUnsubscribe" - -static void push_notification_event_mailboxunsubscribe_debug_mbox -(struct push_notification_txn_event *event ATTR_UNUSED) +static void +push_notification_event_mailboxunsubscribe_debug_mbox( + struct push_notification_txn_event *event ATTR_UNUSED) { - i_debug("%s: Mailbox was subscribed to", EVENT_NAME); + i_debug("%s: Mailbox was subscribed to", EVENT_NAME); } -static void push_notification_event_mailboxunsubscribe_event( - struct push_notification_txn *ptxn, - struct push_notification_event_config *ec, - struct push_notification_txn_mbox *mbox) +static void +push_notification_event_mailboxunsubscribe_event( + struct push_notification_txn *ptxn, + struct push_notification_event_config *ec, + struct push_notification_txn_mbox *mbox) { - struct push_notification_event_mailboxunsubscribe_data *data; + struct push_notification_event_mailboxunsubscribe_data *data; - data = p_new(ptxn->pool, - struct push_notification_event_mailboxunsubscribe_data, 1); - data->subscribe = FALSE; + data = p_new(ptxn->pool, + struct push_notification_event_mailboxunsubscribe_data, 1); + data->subscribe = FALSE; - push_notification_txn_mbox_set_eventdata(ptxn, mbox, ec, data); + push_notification_txn_mbox_set_eventdata(ptxn, mbox, ec, data); } - /* Event definition */ extern struct push_notification_event push_notification_event_mailboxunsubscribe; struct push_notification_event push_notification_event_mailboxunsubscribe = { - .name = EVENT_NAME, - .mbox = { - .debug_mbox = push_notification_event_mailboxunsubscribe_debug_mbox - }, - .mbox_triggers = { - .unsubscribe = push_notification_event_mailboxunsubscribe_event - } + .name = EVENT_NAME, + .mbox = { + .debug_mbox = + push_notification_event_mailboxunsubscribe_debug_mbox, + }, + .mbox_triggers = { + .unsubscribe = push_notification_event_mailboxunsubscribe_event, + }, }; -- 2.47.3