indent --no-tabs -linux
This commit is contained in:
parent
160796a058
commit
841eea2f3e
9
dunst.c
9
dunst.c
@ -640,7 +640,8 @@ void history_pop(void)
|
||||
}
|
||||
}
|
||||
|
||||
void free_notification(notification *n) {
|
||||
void free_notification(notification * n)
|
||||
{
|
||||
free(n->appname);
|
||||
free(n->summary);
|
||||
free(n->body);
|
||||
@ -755,8 +756,7 @@ int close_notification_by_id(int id, int reason)
|
||||
for (iter = notification_queue->head; iter; iter = iter->next) {
|
||||
notification *n = (notification *) iter->data;
|
||||
if (n->id == id) {
|
||||
l_move(notification_queue, notification_history,
|
||||
iter);
|
||||
l_move(notification_queue, notification_history, iter);
|
||||
target = n;
|
||||
break;
|
||||
}
|
||||
@ -1355,8 +1355,7 @@ int main(int argc, char *argv[])
|
||||
key = key_string ? XStringToKeysym(key_string) : NoSymbol;
|
||||
history_key =
|
||||
history_key_string ? XStringToKeysym(history_key_string) : NoSymbol;
|
||||
all_key =
|
||||
all_key_string ? XStringToKeysym(all_key_string) : NoSymbol;
|
||||
all_key = all_key_string ? XStringToKeysym(all_key_string) : NoSymbol;
|
||||
screensaver_info = XScreenSaverAllocInfo();
|
||||
|
||||
initdbus();
|
||||
|
Loading…
x
Reference in New Issue
Block a user