indent --no-tabs -linux

This commit is contained in:
Sascha Kruse 2012-07-18 00:47:59 +02:00
parent 160796a058
commit 841eea2f3e
2 changed files with 15 additions and 16 deletions

View File

@ -640,7 +640,8 @@ void history_pop(void)
} }
} }
void free_notification(notification *n) { void free_notification(notification * n)
{
free(n->appname); free(n->appname);
free(n->summary); free(n->summary);
free(n->body); 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) { for (iter = notification_queue->head; iter; iter = iter->next) {
notification *n = (notification *) iter->data; notification *n = (notification *) iter->data;
if (n->id == id) { if (n->id == id) {
l_move(notification_queue, notification_history, l_move(notification_queue, notification_history, iter);
iter);
target = n; target = n;
break; break;
} }
@ -1355,8 +1355,7 @@ int main(int argc, char *argv[])
key = key_string ? XStringToKeysym(key_string) : NoSymbol; key = key_string ? XStringToKeysym(key_string) : NoSymbol;
history_key = history_key =
history_key_string ? XStringToKeysym(history_key_string) : NoSymbol; history_key_string ? XStringToKeysym(history_key_string) : NoSymbol;
all_key = all_key = all_key_string ? XStringToKeysym(all_key_string) : NoSymbol;
all_key_string ? XStringToKeysym(all_key_string) : NoSymbol;
screensaver_info = XScreenSaverAllocInfo(); screensaver_info = XScreenSaverAllocInfo();
initdbus(); initdbus();